Malá ukázka konfigurace, vlastnosti postupně přidávám .... jen to je takový úvod.... Hotové jsou čisté interfacy, vlany, bridge, ipv4/6, statické routy. Konfigurace je json, bohužel když ho sem přidám tak přijde o veškeré formátování, proto obrázek.
edit: druhý příklad testovací konfigurace:
{
"bridge_domain": [
{
"bridge_domain_id": 1,
"ip_address": [
"10.10.88.1/24",
"2a01:5e0:50::1/64"
]
}
],
"interface": [
{
"interface_name": "GigabitEthernet2/0/0",
"master_bridge_id": 1
},
{
"interface_name": "GigabitEthernet3/0/0",
"ip_address": [
"10.10.50.1/24"
]
},
{
"interface_name": "GigabitEthernet4/0/0"
}
],
"loopback_interfaces": [
{
"ip_address": [
"10.10.77.1/24"
]
}
],
"vlan_interface": [
{
"vlan_id": 11,
"vlan_master_interface": "GigabitEthernet4/0/0",
"master_bridge_id": 1
}
],
"static_routes": [
{
"destination": "192.168.17.2/32",
"route_gateway": [
{
"gateway": "10.10.88.2",
"weight": 1,
"preference": 0
}
]
},
{
"destination": "2a01:5e0:60::/64",
"route_gateway": [
{
"gateway": "2a01:5e0:50::2",
"weight": 1,
"preference": 0
}
]
}
]
}