分类: 网络

287 篇文章

思科C9120的开局脚本
# 进入全局配置模式 enable configure terminal # 设置设备主机名 hostname YourSwitchName # 配置管理接口 interface GigabitEthernet0 ip address 192.168.1.1 255.255.255.0 no shutdown # 配置SSH访问 ip ssh ve…
思科C9200的堆叠脚本
在 Switch1 上的配置: enable configure terminal # 配置主机名 hostname Switch1 # 配置堆叠基准MAC地址 switch 1 priority 15 switch 1 renumber 1 # 配置堆叠接口 interface TenGigabitEthernet1/1/1 stackwise-…
思科C9800控制器堆叠脚本
在 Controller1 上的配置: enable configure terminal # 配置主机名 hostname Controller1 # 配置管理接口 interface GigabitEthernet1 ip address 192.168.1.2 255.255.255.0 no shutdown # 配置SSH访问 ip do…
思科C9800控制器开局脚本
enable configure terminal # 配置主机名 hostname WirelessController # 配置管理接口 interface GigabitEthernet1 ip address 192.168.1.2 255.255.255.0 no shutdown # 配置SSH访问 ip domain-name you…
思科C9500系列交换机虚拟化堆叠
在 Switch1 上的配置: enable configure terminal # 配置虚拟化堆叠 stackwise-virtual domain 1 switch 1 priority 15 switch 2 priority 14 ! interface TenGigabitEthernet1/1/1 stackwise-virtual …
思科C9500开局脚本
enable configure terminal # 配置主机名 hostname Switch9500 # 配置管理VLAN接口 interface Vlan1 ip address 192.168.1.2 255.255.255.0 no shutdown # 配置SSH访问 username admin privilege 15 secre…
思科ISR 3800路由器的开局脚本
! 配置外网接口 interface GigabitEthernet0/0 description Internet Connection ip address <外网IP地址> <子网掩码> ip nat outside ip virtual-reassembly in duplex auto speed auto ! 配…
Palo Alto的开局脚本
# 配置内网地址 set network virtual-router default interface ethernet1/1 ip 192.168.1.1/24 set zone name trust network layer3 ethernet1/1 # 配置外网地址 set network virtual-router default …
CheckPoint的开局脚本
# 配置内网地址 add network 192.168.1.0 netmask 255.255.255.0 add host 192.168.1.1 # 配置外网地址 add network 203.0.113.0 netmask 255.255.255.0 add host 203.0.113.1 # 配置默认路由 set static-rou…