Age | Commit message (Collapse) | Author |
|
|
|
|
|
The import prevent code to work and is not used
|
|
|
|
|
|
This patch migrates the "interface tunnel" section to xml/python
|
|
|
|
The previous logic returned:
>>> eth = vyos.interfaces.list_interfaces_of_type("ethernet")
>>> for intf in eth:
... print(intf)
...
eth0
eth1
eth2
eth0.201
eth1.50
>>> for intf in eth:
... if '.' in intf:
... eth.remove(intf)
...
>>> eth
['eth0', 'eth1', 'eth2', 'eth1.50']
This only eth0.201 was removed
|
|
|
|
|
|
Working:
- Wireless modes b, g, n, ac
- WPA/WPA2 psk and RADIUS (tested using Microsoft NPS)
|
|
|
|
|
|
|
|
|
|
vyos@vyos:~$ run reset openvpn client client1
|
|
|
|
|
|
|
|
for interface types to the completion script.
|
|
|
|
|
|
with VyOS paths.
|