diff --git a/src/stores/standalone/firewall.ts b/src/stores/standalone/firewall.ts
index e1c74cd08..17da35dce 100644
--- a/src/stores/standalone/firewall.ts
+++ b/src/stores/standalone/firewall.ts
@@ -100,6 +100,13 @@ export interface NetmapDevice {
export type NetmapType = 'src' | 'dest'
+export interface NatHelper {
+ name: string
+ enabled: boolean
+ loaded: boolean
+ params?: Record
+}
+
export interface RuleService {
id: string
proto: string[]
diff --git a/src/views/standalone/firewall/NatView.vue b/src/views/standalone/firewall/NatView.vue
index 70c8c9cda..27b1473d6 100644
--- a/src/views/standalone/firewall/NatView.vue
+++ b/src/views/standalone/firewall/NatView.vue
@@ -6,13 +6,36 @@
-
-
-
-
+ {{ t('standalone.nat.title') }}
+
+
+
+
+
+
+
+