Age | Commit message (Collapse) | Author |
|
The op-mode command `show remote-config` did not work for several
years. Since it uses the old backend we should delete it now.
Will be redefined if necessary with a separate task, PR
```
vyos@r1:~$ show remote-config
Invalid command: show remote-config [invalid]
vyos@r1:~$ show remote-config
Incomplete command: show remote-config
vyos@r1:~$
```
(cherry picked from commit ea06a4612285ef4cf3d93220840df32fbc7949c1)
|
|
Delete deprecated op-mode comamnds:
- show interfaces system
- show interfaces vrrp
```
vyos@r4:~$ show interfaces system
-vbash: /opt/vyatta/bin/vyatta-show-interfaces: No such file or directory
```
For VRRP we use `show vrrp`
(cherry picked from commit 159523bad4d3436f2e7554c628fa502daf14060c)
|
|
(cherry picked from commit b9bf89966624d83182f959352ffbbc19ebaa6c7c)
|
|
(cherry picked from commit 8f08086c2a608529e97e0b76f75ce7d6616f8b31)
|
|
(cherry picked from commit 2f92b8bbb1b1042ff14918af3495c86f8b0c7870)
|
|
|
|
|
|
Old Vyatta had a possibility to issue log entries to the users console based
on a service.
Examples:
* monitor dhcp background start | stop
* monitor lldp background start | stop
* monitor openvpn background start | stop
Somehow they not seem to work properly anymore (we are not certain if they
ever did work properly)
The maintainers decided to drop the op-mode CLI nodes from vyatta-op package in
order to get rid of all the legacy code.
In a subsequent task we might wan't to re-add this capability under the more
"industry standard" command terminal monitor.
|
|
|
|
|
|
|
|
Migrate to vyos-1x
* show interfaces tunnel ...
* show interfaces input ...
* show interfaces pseudo-ethernet ...
* show interfaces l2tpv3 ...
* show interfaces bridge ...
* show interfaces vti ...
* show interfaces vxlan ...
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
- show interfaces ethernet eth0 physical
- show interfaces ethernet eth0 physical offload
- show interfaces ethernet eth0 statistics
- show interfaces ethernet eth0 transceiver
- show license
|
|
vyos@vyos:~$ show interfaces ethernet eth3 physical offload
Features for eth3:
rx-checksumming: on
tx-checksumming: on
tx-checksum-ipv4: off [requested on]
tx-checksum-ip-generic: on
tx-checksum-ipv6: off [requested on]
tx-checksum-fcoe-crc: off [fixed]
tx-checksum-sctp: off [fixed]
scatter-gather: on
tx-scatter-gather: on
tx-scatter-gather-fraglist: off [fixed]
tcp-segmentation-offload: on
tx-tcp-segmentation: on
tx-tcp-ecn-segmentation: off [fixed]
tx-tcp-mangleid-segmentation: on
tx-tcp6-segmentation: on
udp-fragmentation-offload: off
generic-segmentation-offload: off
generic-receive-offload: on
large-receive-offload: off
rx-vlan-offload: on
...
|
|
|
|
Also list bond and bridge interfaces when searching for DHCP clients.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
The kernel syslog contains debugging information that is often useful during
exploitation of other vulnerabilities, such as kernel heap addresses. Rather
than futilely attempt to sanitize hundreds (or thousands) of printk statements
and simultaneously cripple useful debugging functionality, it is far simpler
to create an option that prevents unprivileged users from reading the syslog.
For more information please refer to: https://lwn.net/Articles/414813/
|
|
|
|
|
|
|
|
|
|
Fix error when building ISO:
dpkg: error processing archive /var/cache/apt/archives/vyos-1x_1.2.0-1_all.deb (--unpack):
trying to overwrite '/opt/vyatta/share/vyatta-op/templates/show/dns/dynamic/node.def', which
is also in package vyatta-op 0.14.0+vyos2+current6
|
|
|
|
|
|
|
|
|
|
the new implementation.
|
|
|
|
|
|
Using "show tech-support" cmd will produce the tech-support output
without any private information.
Using "show tech-support private" cmd will produce the tech-support
output with private information included.
Note:
=====
The Perl script (vyos-strip-config.pl) used to remove any sensible information
will in addition remove version numbers if they match the regexp below:
# Strip IPv4 addresses
$input =~ s/\d+\.\d+\.(\d+)\.(\d+)/xxx.xxx.$1.$2/g if $stripIP;
Example:
========
i apt xxx.xxx.9.8.4 amd64 commandline package manager
ii apt-transport-https xxx.xxx.9.8.4 amd64 https download transport for APT
i apt 1.0.9.8.4 amd64 commandline package manager
ii apt-transport-https 1.0.9.8.4 amd64 https download transport for APT
This behavior is present in the current implementation and should be
addressed during the move to the new Python scripts.
|
|
entries
|
|
When typing "show system" and pressing tab the autosuggestion still said the installation was based on a vyatta image.
|