mirror of
https://gitlab.com/netravnen/NetworkLabNotes.git
synced 2024-11-14 18:49:38 +00:00
90 lines
1.3 KiB
INI
90 lines
1.3 KiB
INI
|
tclsh
|
||
|
puts [ open "flash:base.cfg" w+ ] {
|
||
|
service timestamps debug datetime msec localtime show-timezone
|
||
|
service timestamps log datetime msec localtime show-timezone
|
||
|
service password-encryption
|
||
|
service counters max age 10
|
||
|
!
|
||
|
hostname __HOSTNAME__
|
||
|
!
|
||
|
logging buffered notifications
|
||
|
no logging console
|
||
|
!
|
||
|
no aaa new-model
|
||
|
clock timezone MET 1 0
|
||
|
clock summer-time MET-DST recurring last Sun Mar 2:00 last Sun Oct 3:00
|
||
|
system mtu routing 1500
|
||
|
!
|
||
|
!
|
||
|
no ip domain-lookup
|
||
|
ip domain-name cisco.tld
|
||
|
!
|
||
|
password encryption aes
|
||
|
!
|
||
|
!
|
||
|
!
|
||
|
!
|
||
|
!
|
||
|
!
|
||
|
!
|
||
|
spanning-tree mode pvst
|
||
|
spanning-tree extend system-id
|
||
|
!
|
||
|
vlan internal allocation policy ascending
|
||
|
!
|
||
|
ip tcp synwait-time 5
|
||
|
ip ssh logging events
|
||
|
ip ssh version 2
|
||
|
ip ssh dh min size 2048
|
||
|
ip ssh dscp 56
|
||
|
!
|
||
|
!
|
||
|
!
|
||
|
!
|
||
|
!
|
||
|
no ip http server
|
||
|
no ip http secure-server
|
||
|
!
|
||
|
!
|
||
|
!
|
||
|
line con 0
|
||
|
exec-timeout 60 0
|
||
|
privilege level 15
|
||
|
logging synchronous
|
||
|
stopbits 1
|
||
|
line vty 0 4
|
||
|
exec-timeout 60 0
|
||
|
privilege level 15
|
||
|
logging synchronous
|
||
|
login
|
||
|
length 0
|
||
|
stopbits 1
|
||
|
line vty 5 15
|
||
|
exec-timeout 60 0
|
||
|
logging synchronous
|
||
|
login
|
||
|
stopbits 1
|
||
|
!
|
||
|
interface range f0/1-24 , g0/1-2
|
||
|
shutdown
|
||
|
exit
|
||
|
!
|
||
|
interface range f0/1-18
|
||
|
no cdp enable
|
||
|
exit
|
||
|
!
|
||
|
interface range f0/19-24
|
||
|
switchport mode trunk
|
||
|
switchport trunk allowed vlan 1
|
||
|
switchport trunk native vlan 1
|
||
|
no shutdown
|
||
|
exit
|
||
|
!
|
||
|
vtp mode transparent
|
||
|
!
|
||
|
exit
|
||
|
!
|
||
|
end
|
||
|
}
|
||
|
tclquit
|