分类: Cisco思科

Cisco思科

160 篇文章

思科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 ! 配…
思科ASA防火墙SSL VPN配置
以下是一个思科ASA防火墙SSL VPN的配置示例,包括添加用户admin密码admin和允许访问内网所有资源,你需要根据你的具体需求进行修改和适配: ! 配置用户和用户组 username admin password admin aaa authentication http console LOCAL tunnel-group-list en…
思科9500交换机ospf配置
以下是一个思科9500交换机配置OSPF的示例脚本,你需要根据你的实际需求进行修改和适配: ! 配置OSPF进程 router ospf 1 router-id 10.1.1.1 passive-interface default no passive-interface TenGigabitEthernet1/1/1 network 10.0.0…
思科ASR9006路由器BGP配置,AS路径添加了三次
以下是一个思科ASR9006路由器加长BGP配置脚本的示例,你需要根据你的实际需求进行修改和适配: ! 配置BGP进程 router bgp 65000 bgp log-neighbor-changes no bgp default ipv4-unicast neighbor 10.1.1.2 remote-as 65000 neighbor 10…