摘要:
Mellanox mlag配置 (类似cisco vpc Dell vlt)以下类似配置mlagprotocol mlag (开启mlag协议)lacp(开启链路聚合协议)no spanning-tree (mlag协议要关闭生成树)dcb priority-flow-control enable 阅读全文
摘要:
sh tcp statistics tcp的统计sh vlan ifindex vlan接口的ifindex LISTENING:侦听来自远方的TCP端口的连接请求. 首先服务端需要打开一个socket进行监听,状态为LISTEN。 有提供某种服务才会处于LISTENING状态,TCP状态变化就是某 阅读全文
摘要:
CiscoASA FQDN配置 (ios8.4及以上版本支持)dns domain-lookup DMZdns server-group DefaultDNS name-server 172.29.12.25 name-server 172.29.12.23 domain-name eascs.co 阅读全文
摘要:
cisco nexus7000 基本系统配置1.开启cdpcdp enablecdp format device-id system-name 默认是对端设备的设备名2.ntp开启普通vdc2下开启ntp同步,先在default vdc上打上clock protocol ntp vdc 2DC1-N 阅读全文
摘要:
Vxlan技术那么现在总结为何需要Vxlan:虚拟机规模受到网络规格的限制,大L2网络里,报文通过查询MAC地址转发,MAC表容量限制了虚拟机的数量。网络隔离的限制,普通的vlan和VPN配置无法满足动态网络调整的需求,同时配置复杂虚拟器搬迁受到限制,虚拟机启动后假如在业务不中断基础上将该虚拟机迁移 阅读全文
摘要:
cisco vss配置Cisco VSS(Virtual Switch System)配置步骤: 1、备份原交换机设备,SW1和SW2相同 Switch-1# copy running-config startup-config Switch-1# copy startup-config disk0 阅读全文
摘要:
Dell-switch ios升级1. show boot system stack-unit all 查看目前ios的版本 2.上传ios到A和B分区 DellEMC# upgrade system tftp: A:Address or name of remote host []: 172.29 阅读全文
摘要:
vpc domain 1 peer-switch stp默认是主的发bpdu,开启peer-switch就会在两台N3K上虚拟出一个mac去发BPDU,当发现生成树主备切换的时候,能快速收敛 role priority 2000 越小越优 system-priority 2000 Domain中设备 阅读全文
摘要:
虚墙配置ciscoasa# sh run: Saved:ASA Version 8.4(2) <system>!firewall transparenthostname ciscoasaenable password 8Ry2YjIyt7555RRXU24 encryptedno mac-addre 阅读全文
摘要:
ssh登陆crypto key generate rsa modulus 1024wr ssh 0.0.0.0 0.0.0.0 insidessh timeout 5username yiyatong pass 123enable pass 123aaa authentication ssh con 阅读全文
摘要:
1.配置登陆用户username admin password admin123 privilege 152.开启日志 loggin on 开启日志记录到buffer: logging buffer 关闭日志通过console口输出至屏幕: no loging monitor 关闭console口的 阅读全文
摘要:
router:ip flow-export source lo1ip flow-export version 5ip flow-export destination 172.29.8.56 9996interface g0/0/0 ip flow ingress ip flow egressinte 阅读全文
摘要:
一、NAT条目数的问题sh ip nat statistics 查看条目数sh ip nat tran * 查看异常的连接数条目写acl策略,限制相应的端口tcp连接clear ip nat tran * 二、网络设备cpu过高,及接口下是否有error和crc记数CPU问题:sh processe 阅读全文
摘要:
vpdn enable!vpdn-group pppoe!interface g0/0 pppoe enable group global pppoe-client dial-pool-number 1 no shut interface Dialer1 ip address negotiated 阅读全文
摘要:
路由器:logging trap warningslogging facility local4logging source-interface Loopback1logging host 172.29.12.86 snmp-server community easnmp ROsnmp-server 阅读全文
摘要:
PE端配置crypto keyring cnc-key vrf cnc pre-shared-key address 0.0.0.0 0.0.0.0 key cisco!crypto isakmp policy 10 hash md5 authentication pre-sharecrypto i 阅读全文
摘要:
ip prefix-list lan-network seq 5 permit 10.0.0.0/8 le 32ip prefix-list lan-network seq 10 permit 172.16.0.0/12 le 32 route-map ospf-redist-static deny 阅读全文
摘要:
ip dhcp pool data network 192.168.1.0 255.255.255.0 default-router 192.168.1.1 dns-server 192.168.1.1 !!ip name-server 114.114.114.114 定义dns地址ip name- 阅读全文
摘要:
#!/bin/bash while true;do read -p "请输入运营商接入类型[static/pppoe]:" access_mode if [ $access_mode == "pppoe" ];then read -p "请输入ADSL账号:" pppoe_username read 阅读全文