dev #4

Merged
gitark merged 8 commits from dev into main 2026-07-19 10:32:26 +03:00
3 changed files with 19 additions and 0 deletions
Showing only changes of commit 099869ff6d - Show all commits

View File

@@ -21,6 +21,7 @@ default_system = {
<group name="interfaces"> <group name="interfaces">
interface {{ interface }} interface {{ interface }}
description {{ description | ORPHRASE }} description {{ description | ORPHRASE }}
shutdown {{ shutdown | set(True) }}
ip address {{ ip_address }} {{ mask | to_cidr }} ip address {{ ip_address }} {{ mask | to_cidr }}
</group> </group>
<group name="vlans"> <group name="vlans">

View File

@@ -30,6 +30,17 @@ interface GigabitEthernet0/0/33
storm-control multicast min-rate 1000 max-rate 2000 storm-control multicast min-rate 1000 max-rate 2000
storm-control action error-down storm-control action error-down
# #
interface GigabitEthernet1/0/43
description FREE
shutdown
port link-type access
port default vlan 102
loopback-detect enable
stp disable
storm-control broadcast min-rate 1500 max-rate 2500
storm-control multicast min-rate 1000 max-rate 2000
storm-control action error-down
#
interface Vlanif120 interface Vlanif120
description SSH description SSH
ip address 10.26.196.254 255.255.255.0 ip address 10.26.196.254 255.255.255.0

View File

@@ -12,6 +12,13 @@
"mask": null, "mask": null,
"description": null "description": null
}, },
{
"interface": "GigabitEthernet1/0/43",
"shutdown": true,
"ip_address": null,
"mask": null,
"description": "FREE"
},
{ {
"interface": "Vlanif120", "interface": "Vlanif120",
"shutdown": false, "shutdown": false,