diff options
author | Robert Göhler <github@ghlr.de> | 2022-10-14 20:33:04 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-14 20:33:04 +0200 |
commit | 1c24c19ffe42decfdaaacbc5a0cbf5a3e20eeb4d (patch) | |
tree | 9797c3293dae69ad3d2ce41613819a6f90526e57 /docs | |
parent | 31d1fe637dd4ed3e556f81fddd2018fbc50f3304 (diff) | |
parent | 73e8670fc4d13b05d783ab25ff5707c4e8de922a (diff) | |
download | vyos-documentation-1c24c19ffe42decfdaaacbc5a0cbf5a3e20eeb4d.tar.gz vyos-documentation-1c24c19ffe42decfdaaacbc5a0cbf5a3e20eeb4d.zip |
Merge pull request #874 from sarthurdev/fw_int
firewall: T2199: Updates to migrated firewall interface nodes
Diffstat (limited to 'docs')
-rw-r--r-- | docs/cli.rst | 2 | ||||
-rw-r--r-- | docs/configuration/interfaces/openvpn.rst | 2 | ||||
-rw-r--r-- | docs/configuration/interfaces/pppoe.rst | 6 |
3 files changed, 5 insertions, 5 deletions
diff --git a/docs/cli.rst b/docs/cli.rst index df50782f..1037c912 100644 --- a/docs/cli.rst +++ b/docs/cli.rst @@ -564,7 +564,7 @@ different levels in the hierarchy. .. code-block:: none - vyos@router# set interfaces ethernet eth0 firewall local name FromWorld + vyos@router# set firewall interface eth0 local name FromWorld vyos@router# commit-confirm commit confirm will be automatically reboot in 10 minutes unless confirmed Proceed? [confirm]y diff --git a/docs/configuration/interfaces/openvpn.rst b/docs/configuration/interfaces/openvpn.rst index ff32d869..5850591c 100644 --- a/docs/configuration/interfaces/openvpn.rst +++ b/docs/configuration/interfaces/openvpn.rst @@ -177,7 +177,7 @@ WAN interface and a direction (local). .. code-block:: none - set interfaces ethernet eth0 firewall local name 'OUTSIDE-LOCAL' + set firewall interface eth0 local name 'OUTSIDE-LOCAL' Static Routing: diff --git a/docs/configuration/interfaces/pppoe.rst b/docs/configuration/interfaces/pppoe.rst index dbf92caf..4f3926b2 100644 --- a/docs/configuration/interfaces/pppoe.rst +++ b/docs/configuration/interfaces/pppoe.rst @@ -335,9 +335,9 @@ assigning it to the pppoe0 itself as shown here: .. code-block:: none - set interfaces pppoe pppoe0 firewall in name NET-IN - set interfaces pppoe pppoe0 firewall local name NET-LOCAL - set interfaces pppoe pppoe0 firewall out name NET-OUT + set firewall interface pppoe0 in name NET-IN + set firewall interface pppoe0 local name NET-LOCAL + set firewall interface pppoe0 out name NET-OUT VLAN Example ============ |