現在の設定を見たい場合、show configuration で表示させることができます。
ubnt@ubnt:~$ show configuration interfaces { ethernet eth0 { address xxx.xxx.xxx.xxx/xx duplex auto speed auto } ~以下略~
なんですが、ツリー表示ではなく実際に投入できるコマンドの形式で欲しいことがあります。
その場合は、/opt/vyatta/sbin/vyatta-config-gen-sets.pl を使用することによってコマンド形式で表示させることができます。引数は config ファイルなので /config/config.boot を指定します。
ubnt@ubnt:~$ /opt/vyatta/sbin/vyatta-config-gen-sets.pl /config/config.boot set firewall all-ping 'enable' set firewall broadcast-ping 'disable' set firewall ipv6-receive-redirects 'disable' set firewall ipv6-src-route 'disable' set firewall ip-src-route 'disable' set firewall log-martians 'enable' ~以下略~