diff options
Diffstat (limited to 'templates-op/show/nat/translations/source')
6 files changed, 23 insertions, 0 deletions
diff --git a/templates-op/show/nat/translations/source/address/node.def b/templates-op/show/nat/translations/source/address/node.def new file mode 100644 index 0000000..42bfbba --- /dev/null +++ b/templates-op/show/nat/translations/source/address/node.def @@ -0,0 +1 @@ +help: Show active NAT source translations for a IP address diff --git a/templates-op/show/nat/translations/source/address/node.tag/node.def b/templates-op/show/nat/translations/source/address/node.tag/node.def new file mode 100644 index 0000000..0271dd1 --- /dev/null +++ b/templates-op/show/nat/translations/source/address/node.tag/node.def @@ -0,0 +1,11 @@ +help: Show active NAT source translations for an IP address +allowed: echo -n '<x.x.x.x>' +run: if /opt/vyatta/sbin/vyatta-validate-type.pl -q ipv4 $6 + then + sudo ${vyatta_bindir}/sudo-users/vyatta-nat-translations.pl \ + --mode=snat \ + --verbose \ + --ipaddr="$6" + else + echo "Invalid IP address" + fi diff --git a/templates-op/show/nat/translations/source/detail/node.def b/templates-op/show/nat/translations/source/detail/node.def new file mode 100644 index 0000000..5f8af5b --- /dev/null +++ b/templates-op/show/nat/translations/source/detail/node.def @@ -0,0 +1,3 @@ +help: Show active NAT source translations detail +run: sudo ${vyatta_bindir}/sudo-users/vyatta-nat-translations.pl --mode=snat \ + --verbose diff --git a/templates-op/show/nat/translations/source/monitor/detail/node.def b/templates-op/show/nat/translations/source/monitor/detail/node.def new file mode 100644 index 0000000..cadd4bf --- /dev/null +++ b/templates-op/show/nat/translations/source/monitor/detail/node.def @@ -0,0 +1,3 @@ +help: Show active NAT source translations events +run: echo Type control-C to quit + sudo /usr/sbin/conntrack -E -n -o xml | ${vyatta_bindir}/sudo-users/vyatta-nat-translations.pl --mode=snat --pipe --verbose | ${VYATTA_PAGER:-cat}
\ No newline at end of file diff --git a/templates-op/show/nat/translations/source/monitor/node.def b/templates-op/show/nat/translations/source/monitor/node.def new file mode 100644 index 0000000..b1fced2 --- /dev/null +++ b/templates-op/show/nat/translations/source/monitor/node.def @@ -0,0 +1,3 @@ +help: Show active NAT source translations events +run: echo Type control-C to quit + sudo /usr/sbin/conntrack -E -n -o xml | ${vyatta_bindir}/sudo-users/vyatta-nat-translations.pl --mode=snat --pipe | ${VYATTA_PAGER:-cat} diff --git a/templates-op/show/nat/translations/source/node.def b/templates-op/show/nat/translations/source/node.def new file mode 100644 index 0000000..c14c955 --- /dev/null +++ b/templates-op/show/nat/translations/source/node.def @@ -0,0 +1,2 @@ +help: Show active NAT source translations +run: sudo ${vyatta_bindir}/sudo-users/vyatta-nat-translations.pl --mode=snat |