2018-07-08 22:47:03 +02:00
|
|
|
|
; {{ switch.model.reference }}A Configuration Editor; Created on release #{{ switch.model.firmware }}
|
2018-07-02 10:40:45 +02:00
|
|
|
|
|
|
|
|
|
hostname "{{ switch.short_name }}"
|
|
|
|
|
; Generated on {{ date_gen }} by re2o
|
|
|
|
|
;--- Snmp ---
|
2018-07-09 00:12:38 +02:00
|
|
|
|
{%- if switch.switchbay.name %}
|
2018-07-02 10:40:45 +02:00
|
|
|
|
snmp-server location "{{ switch.switchbay.name }}"
|
2018-07-09 00:12:38 +02:00
|
|
|
|
{%- endif %}
|
2018-07-02 10:40:45 +02:00
|
|
|
|
;A faire à la main
|
|
|
|
|
snmpv3 enable
|
|
|
|
|
snmpv3 restricted-access
|
2018-07-08 22:47:03 +02:00
|
|
|
|
snmpv3 user "re2o"
|
|
|
|
|
snmpv3 group ManagerPriv user "re2o" sec-model ver3
|
2018-07-02 10:40:45 +02:00
|
|
|
|
snmp-server community "public" Operator
|
2018-07-08 19:13:58 +02:00
|
|
|
|
;--- Heure/date
|
|
|
|
|
time timezone 60
|
|
|
|
|
time daylight-time-rule Western-Europe
|
2018-07-11 23:58:16 +02:00
|
|
|
|
{%- for ipv4 in settings.switchs_management_utils.ntp_servers.ipv4 %}
|
|
|
|
|
sntp server priority {{ loop.index }} {{ ipv4 }} 4
|
2018-07-08 19:13:58 +02:00
|
|
|
|
{%- endfor %}
|
2018-07-11 23:58:16 +02:00
|
|
|
|
{%- for ipv6 in settings.switchs_management_utils.ntp_servers.ipv6 %}
|
|
|
|
|
sntp server priority {{ loop.index + settings.switchs_management_utils.ntp_servers.ipv4|length }} {{ ipv6 }} 4
|
2018-07-08 19:13:58 +02:00
|
|
|
|
{%- endfor %}
|
2018-07-02 10:40:45 +02:00
|
|
|
|
timesync sntp
|
|
|
|
|
sntp unicast
|
|
|
|
|
;--- Misc ---
|
|
|
|
|
console inactivity-timer 30
|
2018-07-08 19:13:58 +02:00
|
|
|
|
;--- Logs ---
|
2018-07-11 23:58:16 +02:00
|
|
|
|
{%- for ipv4 in settings.switchs_management_utils.log_servers.ipv4 %}
|
|
|
|
|
logging {{ ipv4 }}
|
2018-07-08 19:13:58 +02:00
|
|
|
|
{%- endfor %}
|
2018-07-11 23:58:16 +02:00
|
|
|
|
{%- for ipv6 in settings.switchs_management_utils.log_servers.ipv6 %}
|
|
|
|
|
logging {{ ipv6 }}
|
2018-07-08 19:13:58 +02:00
|
|
|
|
{%- endfor %}
|
2018-07-02 10:40:45 +02:00
|
|
|
|
;--- IP du switch ---
|
|
|
|
|
no ip default-gateway
|
2018-07-08 19:13:58 +02:00
|
|
|
|
max-vlans 256
|
|
|
|
|
{%- for id, vlan in additionals.vlans.items() %}
|
|
|
|
|
vlan {{ id }}
|
|
|
|
|
name "{{ vlan["name"]|capitalize }}"
|
|
|
|
|
{%- if vlan["ports_tagged"] %}
|
2018-07-09 00:12:38 +02:00
|
|
|
|
tagged {{ vlan["ports_tagged"]|join(',') }}
|
2018-07-08 19:13:58 +02:00
|
|
|
|
{%- endif %}
|
|
|
|
|
{%- if vlan["ports_untagged"] %}
|
2018-07-09 00:12:38 +02:00
|
|
|
|
untagged {{ vlan["ports_untagged"]|join(',') }}
|
2018-07-08 19:13:58 +02:00
|
|
|
|
{%- endif %}
|
|
|
|
|
{%- if switch.subnet.0.vlan_id == id %}
|
2018-07-09 00:36:55 +02:00
|
|
|
|
ip address {{ switch.ipv4 }}/{{ switch.subnet.0.netmask_cidr }}
|
2018-07-08 19:13:58 +02:00
|
|
|
|
{%- else %}
|
|
|
|
|
no ip address
|
|
|
|
|
{%- endif %}
|
|
|
|
|
{%- if switch.subnet.0.vlan_id == id %}
|
2018-07-09 00:36:55 +02:00
|
|
|
|
ipv6 address {{ switch.ipv6 }}/{{ switch.subnet6.netmask_cidr }}
|
2018-07-08 19:13:58 +02:00
|
|
|
|
{%- else %}
|
|
|
|
|
no ipv6 enable
|
|
|
|
|
{%- endif %}
|
2018-07-08 20:31:04 +02:00
|
|
|
|
{%- if id in additionals.igmp_vlans %}
|
|
|
|
|
ip igmp
|
|
|
|
|
no ip igmp querier
|
|
|
|
|
{%- endif %}
|
|
|
|
|
{%- if id in additionals.mld_vlans %}
|
|
|
|
|
no ipv6 mld querier
|
|
|
|
|
ipv6 mld version 1
|
|
|
|
|
ipv6 mld enable
|
|
|
|
|
{%- endif %}
|
2018-07-08 19:13:58 +02:00
|
|
|
|
exit
|
|
|
|
|
{%- endfor %}
|
2018-07-02 10:40:45 +02:00
|
|
|
|
;--- Accès d'administration ---
|
|
|
|
|
no telnet-server
|
2018-07-09 23:42:26 +02:00
|
|
|
|
{%- if switch.web_management_enabled %}
|
2018-07-10 00:04:11 +02:00
|
|
|
|
{%- if switch.web_management_enabled != "ssl" %}
|
2018-07-09 23:42:26 +02:00
|
|
|
|
web-management plaintext
|
2018-07-10 00:04:11 +02:00
|
|
|
|
{%- endif %}
|
|
|
|
|
{%- if switch.web_management_enabled == "ssl" %}
|
|
|
|
|
web-management ssl
|
|
|
|
|
{%- endif %}
|
2018-07-09 23:42:26 +02:00
|
|
|
|
{%- else %}
|
2018-07-02 10:40:45 +02:00
|
|
|
|
no web-management
|
2018-07-09 23:42:26 +02:00
|
|
|
|
{%- endif %}
|
|
|
|
|
{%- if switch.rest_enabled %}
|
|
|
|
|
rest-interface
|
|
|
|
|
{%- endif %}
|
2018-07-02 10:40:45 +02:00
|
|
|
|
aaa authentication ssh login public-key none
|
|
|
|
|
aaa authentication ssh enable public-key none
|
|
|
|
|
ip ssh
|
|
|
|
|
ip ssh filetransfer
|
2018-07-11 23:58:16 +02:00
|
|
|
|
{%- if settings.switchs_management_utils.subnet %}
|
|
|
|
|
ip authorized-managers {{ settings.switchs_management_utils.subnet.0.network }} {{ settings.switchs_management_utils.subnet.0.netmask }} access manager
|
|
|
|
|
{%- endif %}
|
|
|
|
|
{%- if settings.switchs_management_utils.subnet6 %}
|
|
|
|
|
ipv6 authorized-managers {{ settings.switchs_management_utils.subnet6.network }} {{ settings.switchs_management_utils.subnet6.netmask }} access manager
|
2018-07-02 10:40:45 +02:00
|
|
|
|
{%- endif %}
|
2018-07-08 19:13:58 +02:00
|
|
|
|
{%- if additionals.loop_protected %}
|
2018-07-02 10:40:45 +02:00
|
|
|
|
;--- Protection contre les boucles ---
|
|
|
|
|
loop-protect disable-timer 30
|
|
|
|
|
loop-protect transmit-interval 3
|
2018-07-09 00:12:38 +02:00
|
|
|
|
loop-protect {{ additionals.loop_protected|join(',') }}
|
2018-07-08 19:13:58 +02:00
|
|
|
|
{%- endif %}
|
2018-07-08 20:31:04 +02:00
|
|
|
|
;--- Serveurs Radius
|
|
|
|
|
radius-server dead-time 2
|
2018-07-11 23:58:16 +02:00
|
|
|
|
{%- for ipv4 in settings.switchs_management_utils.radius_servers.ipv4 %}
|
|
|
|
|
radius-server host {{ ipv4 }} key "{{ switch.get_radius_key_value }}"
|
|
|
|
|
radius-server host {{ ipv4 }} dyn-authorization
|
2018-07-08 20:31:04 +02:00
|
|
|
|
{%- endfor %}
|
2018-07-02 10:40:45 +02:00
|
|
|
|
radius-server dyn-autz-port 3799
|
|
|
|
|
;--- Filtrage mac ---
|
|
|
|
|
aaa port-access mac-based addr-format multi-colon
|
|
|
|
|
;--- Bricoles ---
|
|
|
|
|
no cdp run
|
2018-07-08 19:13:58 +02:00
|
|
|
|
{%- if additionals.dhcp_snooping_vlans %}
|
|
|
|
|
;--- DHCP Snooping ---
|
2018-07-11 23:58:16 +02:00
|
|
|
|
{%- for ipv4 in settings.switchs_management_utils.dhcp_servers.ipv4 %}
|
|
|
|
|
dhcp-snooping authorized-server {{ ipv4 }}
|
2018-07-08 19:26:06 +02:00
|
|
|
|
{%- endfor %}
|
2018-07-08 19:13:58 +02:00
|
|
|
|
dhcp-snooping vlan {{ additionals.dhcp_snooping_vlans|join(' ') }}
|
2018-07-02 10:40:45 +02:00
|
|
|
|
dhcp-snooping
|
2018-07-08 19:13:58 +02:00
|
|
|
|
{%- endif %}
|
|
|
|
|
{%- if additionals.arp_protect_vlans %}
|
|
|
|
|
;--- ARP Protect ---
|
|
|
|
|
arp-protect
|
|
|
|
|
arp-protect vlan {{ additionals.arp_protect_vlans|join(' ') }}
|
|
|
|
|
arp-protect validate src-mac dest-mac
|
|
|
|
|
{%- endif %}
|
|
|
|
|
{%- if additionals.dhcpv6_snooping_vlans %}
|
|
|
|
|
;--- DHCPv6 Snooping ---
|
|
|
|
|
dhcpv6-snooping vlan {{ additionals.dhcpv6_snooping_vlans|join(' ') }}
|
|
|
|
|
dhcpv6-snooping
|
|
|
|
|
{%- endif %}
|
|
|
|
|
{%- if additionals.ra_guarded %}
|
|
|
|
|
;--- RA guards ---
|
2018-07-09 00:12:38 +02:00
|
|
|
|
ipv6 ra-guard ports {{ additionals.ra_guarded|join(',')}}
|
2018-07-08 19:13:58 +02:00
|
|
|
|
{%- endif %}
|
2018-07-02 10:40:45 +02:00
|
|
|
|
;--- Config des prises ---
|
|
|
|
|
{%- for port in switch.ports %}
|
|
|
|
|
{%- if port.get_port_profil.radius_type == "802.1X" %}
|
|
|
|
|
aaa port-access authenticator {{ port.port }}
|
|
|
|
|
{%- if port.get_port_profil.mac_limit %}
|
|
|
|
|
aaa port-access authenticator {{ port.port }} client-limit {{ port.get_port_profil.mac_limit }}
|
|
|
|
|
{%- endif %}
|
|
|
|
|
aaa port-access authenticator {{ port.port }} logoff-period 3600
|
|
|
|
|
{%- endif %}
|
|
|
|
|
{%- if port.get_port_profil.radius_type == "MAC-radius" %}
|
|
|
|
|
aaa port-access mac-based {{ port.port }}
|
|
|
|
|
{%- if port.get_port_profil.mac_limit %}
|
|
|
|
|
aaa port-access mac-based {{ port.port }} addr-limit {{ port.get_port_profil.mac_limit }}
|
|
|
|
|
{%- endif %}
|
|
|
|
|
aaa port-access mac-based {{ port.port }} logoff-period 3600
|
|
|
|
|
aaa port-access mac-based {{ port.port }} unauth-vid 1
|
|
|
|
|
{%- endif %}
|
|
|
|
|
interface {{ port.port }}
|
|
|
|
|
{%- if port.state %}
|
|
|
|
|
enable
|
|
|
|
|
{%- else %}
|
|
|
|
|
disable
|
|
|
|
|
{%- endif %}
|
2018-07-08 19:13:58 +02:00
|
|
|
|
name "{{ port.pretty_name }}"
|
2018-07-02 10:40:45 +02:00
|
|
|
|
{%- if port.get_port_profil.flow_control %}
|
2018-07-09 00:12:38 +02:00
|
|
|
|
flow-control
|
2018-07-02 10:40:45 +02:00
|
|
|
|
{%- endif %}
|
|
|
|
|
{%- if not port.get_port_profil.dhcp_snooping %}
|
|
|
|
|
dhcp-snooping trust
|
|
|
|
|
{%- endif %}
|
|
|
|
|
{%- if not port.get_port_profil.arp_protect %}
|
|
|
|
|
arp-protect trust
|
|
|
|
|
{%- endif %}
|
|
|
|
|
{%- if not port.get_port_profil.dhcpv6_snooping %}
|
|
|
|
|
dhcpv6-snooping trust
|
|
|
|
|
{%- endif %}
|
|
|
|
|
no lacp
|
|
|
|
|
exit
|
|
|
|
|
{%- endfor %}
|
|
|
|
|
;--- Configuration comptabilisation RADIUS ---
|
|
|
|
|
aaa accounting network start-stop radius
|
|
|
|
|
aaa accounting session-id unique
|
|
|
|
|
aaa accounting update periodic 240
|
|
|
|
|
;--- Filtre de protocole ---
|
|
|
|
|
filter multicast 01005e0000fb drop all
|
|
|
|
|
filter multicast 3333000000fb drop all
|