Bonjour,
je simule une architecture réseau avec gns3 0.8.7. J'essaye en vain de créer un VLAN sur un routeur Cisco 3725 (c3725-adventerprisek9-mz.124-15.T14 pour la version) avec un module NM-16ESW. Le sujet a largement été abordé au travers des internets mais je cumule les problèmes.
J'ai eu des soucis de sauvegarde. Mes vlans étaient perdu après chaque session GNS3 parce que le fichier VLAN.dat n'est pas sauvé avec la running config. Un workaround existe : créer des extended vlans avec une ID supérieure à 1000. Mon image ne le permettait pas, je suis passé à l'image citée ci-dessus.
Maintenant je peux créer mon vlan en mode config (ID 1100) mais le switch se comporte comme s'il n'existait pas ou du moins je n'ai aucune connectivité avec les machines virtuelles dans mon vlan.
Ma running config :
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 Router#sh ip int br Interface IP-Address OK? Method Status Protocol FastEthernet0/0 172.22.0.45 YES NVRAM up up FastEthernet0/1 172.22.0.49 YES NVRAM up up FastEthernet1/0 unassigned YES unset up up ....... FastEthernet1/15 unassigned YES unset up down Vlan1 unassigned YES NVRAM up down Vlan1100 172.22.100.254 YES NVRAM up up Router#sh vlan-switch VLAN Name Status Ports ---- -------------------------------- --------- ------------------------------- 1 default active 1002 fddi-default act/unsup 1003 token-ring-default act/unsup 1004 fddinet-default act/unsup 1005 trnet-default act/unsup 1100 VLAN1100 active Fa1/0, Fa1/1, Fa1/2, Fa1/3 Fa1/4, Fa1/5, Fa1/6, Fa1/7 Fa1/8, Fa1/9, Fa1/10, Fa1/11 Fa1/12, Fa1/13, Fa1/14, Fa1/15 2000 VLAN2000 active .....
Pourtant quand je fais
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 Router#sh run Building configuration... Current configuration : 1941 bytes ! version 12.4 service timestamps debug datetime msec service timestamps log datetime msec no service password-encryption ! hostname Router ! boot-start-marker boot-end-marker ! ! no aaa new-model memory-size iomem 5 ip cef ! ! ! ! ! multilink bundle-name authenticated ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! vtp mode transparent archive log config hidekeys ! ! ! ! vlan 1100,2000 ! ! ! ! ! interface FastEthernet0/0 ip address 172.22.0.45 255.255.255.252 duplex auto speed auto ! interface FastEthernet0/1 ip address 172.22.0.49 255.255.255.252 duplex auto speed auto ! interface FastEthernet1/0 switchport access vlan 1100 ! interface FastEthernet1/1 switchport access vlan 1100 ! interface FastEthernet1/2 switchport access vlan 1100 ! interface FastEthernet1/3 switchport access vlan 1100 ! interface FastEthernet1/4 switchport access vlan 1100 ! ......... ! interface FastEthernet1/14 switchport access vlan 1100 ! interface FastEthernet1/15 switchport access vlan 1100 ! interface Vlan1 no ip address ! interface Vlan1100 ip address 172.22.100.254 255.255.255.0 ! router ospf 1 log-adjacency-changes network 172.22.0.44 0.0.0.3 area 0 network 172.22.0.48 0.0.0.3 area 0 network 172.22.100.0 0.0.0.255 area 0 ! ip forward-protocol nd ! ! ip http server no ip http secure-server ! no cdp log mismatch duplex ! ! ! ! ! ! control-plane ! ! ! ! ! ! ! ! ! ! line con 0 line aux 0 line vty 0 4 login ! ! end
J'ai attribué l'IP 172.22.100.254/24 à mon vlan et 172.22.100.1/24 a mon serveur virtualisé. Les machines sont "physiquement" connectées, quand j'efface la liaison dans GNS3 j'observe la déconnexion dans virtualbox. Et toujours aucune connectivité. Je sèche ! Une idée ?
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4 Router#sh vlans No Virtual LANs configured.
Merci d'avance pour toute aide.
Partager