diff options
author | Diego Garcia del Rio <garci66@gmail.com> | 2016-10-06 16:02:53 -0300 |
---|---|---|
committer | Diego Garcia del Rio <garci66@gmail.com> | 2016-10-06 16:02:53 -0300 |
commit | 1f52ca7fceabea209f13a2d95deed5cb2330aaae (patch) | |
tree | 91fff3fe7f4abaf4846d6a76373b622536ac58a4 /templates | |
parent | 1415826ef3805ac970e128e42fd45496dd06d497 (diff) | |
download | vyatta-cfg-system-1f52ca7fceabea209f13a2d95deed5cb2330aaae.tar.gz vyatta-cfg-system-1f52ca7fceabea209f13a2d95deed5cb2330aaae.zip |
fix path for fiv pvlan command
Diffstat (limited to 'templates')
-rw-r--r-- | templates/interfaces/ethernet/node.tag/vif/node.tag/ip/proxy-arp-pvlan/node.def | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/interfaces/ethernet/node.tag/vif/node.tag/ip/proxy-arp-pvlan/node.def b/templates/interfaces/ethernet/node.tag/vif/node.tag/ip/proxy-arp-pvlan/node.def index a6cf9494..49bec357 100644 --- a/templates/interfaces/ethernet/node.tag/vif/node.tag/ip/proxy-arp-pvlan/node.def +++ b/templates/interfaces/ethernet/node.tag/vif/node.tag/ip/proxy-arp-pvlan/node.def @@ -1,3 +1,3 @@ help: Enable private VLAN proxy ARP on this interface -create:expression: "sudo sh -c \"echo 1 > /proc/sys/net/ipv4/conf/$VAR(../../@)/proxy_arp_pvlan\" " -delete:expression: "sudo sh -c \"echo 0 > /proc/sys/net/ipv4/conf/$VAR(../../@)/proxy_arp_pvlan\" " +create:expression: "sudo sh -c \"echo 1 > /proc/sys/net/ipv4/conf/$VAR(../../../@).$VAR(../../@)/proxy_arp_pvlan\" " +delete:expression: "sudo sh -c \"echo 0 > /proc/sys/net/ipv4/conf/$VAR(../../../@).$VAR(../../@)/proxy_arp_pvlan\" " |