首页 > 代码库 > 鬼畜版TS1014解法

鬼畜版TS1014解法

懂人自看

1、
SW1:
interface Ethernet0/0、1、2、3
 switchport trunk allowed vlan add 12

 

vlan 200
 no shut

 

SW2:
interface Vlan12
 ip address 172.16.0.22 255.255.255.252

 

R7:
ip dhcp pool POOL
   default-router 172.16.100.1

 

2、
R12:
aaa authentication ppp default group tacacs+ local

 

int s4/0
 ppp authentication chap

 

ip local pool P17 145.67.89.22

 

R17:
no username R12 password CISCO

 

3、
R21、R22:
ospf进程下no prefix-suppression

 

R21:
interface Ethernet0/0
 no ip ospf hello-interval 11

 

R22:
interface Ethernet0/0
 ip ospf 1 area 11

 

R5:
router ospf 1
 no area 1 stub

 

R1:
ospf进程下no auto-cost reference-bandwidth 1000

 

4、
R11、R13修改k值:

 

R11修改保持时间

 

R14:
router eigrp 145
 network 145.67.89.0 0.0.0.255
 eigrp stub receive-only

 

lo0地址配错

 

R12:
eigrp内no offset-list 14 in 222222 e1/0

 

5、
R22:
no neighbor 134.56.78.14 route-map NoAD in

 

R3、R5:
neighbor 123.4.4.4 route-reflector-client

 

R6:
e0/0:no ip ospf network point-to-point

 

R5:
no interface lo194

 

R21:
e1/0:no ip access-group 2112 in

 

6、
R25:s4/0:ipv6 address FE80::A8BB:CCFF:FE00:1600 link-local

 

R25: e0/0:ipv6 nd ra suppress

 

R25:network 2001:CC1E:BEEF:25::/64

 

USER103:ipv6 address autoconfig

 

7、
R15:
tunnel0:
ip next-hop-self eigrp 200
no ip nhrp map multicast 145.67.89.10
ip nhrp map multicast dynamic

 

R18:
no neighbor 215.0.0.1 tunnel 0

 

R19:
做了COPP

 

R20有干扰路由

 

8、
R3:
route-map lp permit 10
 set local-preference 101

 

interface Ethernet1/0.124
 ip vrf forwarding SPOKE

 

ip vrf HUB
 route-target export 65100:100

 

R1:
access-list 35 permit 123.5.5.5

 

R9:
router ospf 1
 default-information originate

 

router bgp 65101
 redistribute ospf 1 match internal external 1 external 2

 

R2:
mpls ldp router-id Loopback0 force

 

R7:
interface Ethernet0/0.125
 encapsulation dot1Q 125

 

R8:
ip route 0.0.0.0 0.0.0.0 125.45.67.25

 

R4:
interface e2/0
 ip ospf cost 222

 

9、
R23上nat有问题

 

R7和R24:
authentication pre-share
no tunnel mode ipsec ipv4

 

10、
R23:
ip name-server 8.8.8.8
ip domain lookup

 

NAS:
ip http server
no mac-address 8008.2088.2000

本文出自 “曹五柳” 博客,谢绝转载!

鬼畜版TS1014解法