Bonjour à tous,
J'ai récupéré un router Cisco 2900 que je suis en train de configurer pour ma ligne VDSL2.
J'ai donc acheter la carte qui va bien EHWIC-VA-DSL-A et j'ai réussi à faire ma conf et ma synchro est OK
Je ping différents sites sans soucis depuis le CLI de mon router.
Là où je bloque c'est que j'ai branché un pc sur le port gigaethernet 0/0 et en entrant une IP en dur dans ma carte réseau ainsi que les DNS de mon FAI (Orange) pas moyen de naviguer sur le net. Mon PC ping bien mon router.
Voilà ma conf de router
Merci d'avance
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146 Current configuration : 2563 bytes ! ! Last configuration change at 13:34:08 UTC Wed Aug 26 2020 version 15.1 service timestamps debug datetime msec service timestamps log datetime msec no service password-encryption ! hostname Router ! boot-start-marker warm-reboot boot-end-marker ! ! ! no aaa new-model ! no ipv6 cef ipv6 spd queue min-threshold 62 ipv6 spd queue max-threshold 63 ip source-route ip cef ! ! ! ip dhcp excluded-address 192.168.0.250 192.168.0.254 ! ip dhcp pool CLIENT_LAN network 192.168.30.0 255.255.255.0 dns-server 8.8.8.8 default-router 192.168.0.254 ! ip dhcp pool ADMIN network 192.168.0.0 255.255.255.0 dns-server 8.8.8.8 default-router 192.168.0.254 ! ! ip domain name ataworld.fr ip host ataworld.fr ns Router.ataworld.fr ip host Router.ataworld.fr 192.168.0.254 ip host PC.ataworld.fr 192.168.0.10 ip name-server 8.8.8.8 ip name-server 8.8.4.4 ip name-server 80.10.246.1 multilink bundle-name authenticated ! ! crypto pki token default removal timeout 0 ! ! license udi pid CISCO2901/K9 sn FCZ1749C153 ! ! ! ! controller VDSL 0/0/0 operating mode vdsl2 ! ! ! ! ! interface Embedded-Service-Engine0/0 no ip address shutdown ! interface GigabitEthernet0/0 description LINE ip address 192.168.0.254 255.255.255.0 ip nat inside ip virtual-reassembly in duplex auto speed auto ntp disable ! interface GigabitEthernet0/1 no ip address shutdown duplex auto speed auto ! interface ATM0/0/0 description adsl no ip address shutdown no atm ilmi-keepalive hold-queue 224 in ! interface Ethernet0/0/0 mtu 1508 no ip address ! interface Ethernet0/0/0.835 encapsulation dot1Q 835 pppoe enable group global pppoe-client dial-pool-number 1 pppoe-client ppp-max-payload 1500 ! interface Dialer1 description adsl ppp orange ip address negotiated ip mtu 1492 ip nat outside ip virtual-reassembly in encapsulation ppp dialer pool 1 ppp authentication chap callin ppp chap hostname fti/xxxxxxx ppp chap password 0 xxxxxxxx ! ip forward-protocol nd ! no ip http server no ip http secure-server ! ip dns server ip dns primary ataworld.fr soa Router-dns.ataworld.fr nsalmon@ataworld.fr 21600 900 7776000 86400 ip route 0.0.0.0 0.0.0.0 193.253.160.3 ip route 0.0.0.0 0.0.0.0 Dialer1 ! access-list 1 permit 0.0.0.0 255.255.255.0 dialer-list 1 protocol ip permit ! ! ! control-plane ! ! ! line con 0 line aux 0 line 2 no activation-character no exec transport preferred none transport input all transport output pad telnet rlogin lapb-ta mop udptn v120 ssh stopbits 1 line vty 0 4 login transport input all ! scheduler allocate 20000 1000 end
Partager