diff options
author | Christian Poessinger <christian@poessinger.com> | 2019-11-30 14:10:13 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-11-30 14:10:13 +0100 |
commit | ce5c2f4c868131f6a936f9aa8f3def1c464302e4 (patch) | |
tree | 755bdc2ce3f6dac1e2b0ff9971f335734947c5d6 /docs/commandscripting.rst | |
parent | 9504d78294c5bb89ffcca70fa687bbaed7177c42 (diff) | |
parent | dfc75fe5faa219fb31f43735c0b09c372a6699f2 (diff) | |
download | vyos-documentation-ce5c2f4c868131f6a936f9aa8f3def1c464302e4.tar.gz vyos-documentation-ce5c2f4c868131f6a936f9aa8f3def1c464302e4.zip |
Merge pull request #155 from rebortg/reserverd_addressspace
migrate to reserved address space
Diffstat (limited to 'docs/commandscripting.rst')
-rw-r--r-- | docs/commandscripting.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/commandscripting.rst b/docs/commandscripting.rst index 5d14c6c5..3c437fb0 100644 --- a/docs/commandscripting.rst +++ b/docs/commandscripting.rst @@ -55,8 +55,8 @@ Here is a simple example: #!/usr/bin/env python print "delete firewall group address-group somehosts" - print "set firewall group address-group somehosts address '1.1.1.1'" - print "set firewall group address-group somehosts address '1.1.1.2'" + print "set firewall group address-group somehosts address '192.0.2.3'" + print "set firewall group address-group somehosts address '203.0.113.55'" .. code-block:: none |