Projet

Général

Profil

NXOS » Historique » Version 30

Laurent GUERBY, 15/07/2018 16:46

1 20 Laurent GUERBY
{{>toc}}
2 20 Laurent GUERBY
3 1 Matthieu Herrb
h1. NXOS
4 1 Matthieu Herrb
5 11 Laurent GUERBY
Cisco Nexus 3064X
6 30 Laurent GUERBY
version @7.0(3)I4(7)@
7 1 Matthieu Herrb
8 10 Laurent GUERBY
Voir aussi https://www.grenode.net/Documentation_technique/Machines/kraken/
9 10 Laurent GUERBY
10 21 Laurent GUERBY
https://www.cisco.com/c/en/us/td/docs/switches/datacenter/nexus3000/sw/fundamentals/503_U3_1/b_Nexus_3000_Fundamentals_Guide_Release_503_U3_1.pdf
11 18 Laurent GUERBY
12 1 Matthieu Herrb
h2. Interface de management out-of-band
13 1 Matthieu Herrb
14 9 Laurent GUERBY
* n3064a Adresse: 192.168.129.46
15 9 Laurent GUERBY
16 9 Laurent GUERBY
<pre>
17 9 Laurent GUERBY
interface mgmt0
18 9 Laurent GUERBY
  vrf member management
19 9 Laurent GUERBY
  ip address 192.168.129.46/24
20 9 Laurent GUERBY
21 9 Laurent GUERBY
</pre>
22 1 Matthieu Herrb
23 1 Matthieu Herrb
h2. Commandes
24 1 Matthieu Herrb
25 1 Matthieu Herrb
h3. Sauvegarde config 
26 1 Matthieu Herrb
27 1 Matthieu Herrb
<pre>
28 1 Matthieu Herrb
nexus# copy run start
29 1 Matthieu Herrb
</pre>
30 1 Matthieu Herrb
31 1 Matthieu Herrb
Copie via scp
32 1 Matthieu Herrb
33 1 Matthieu Herrb
<pre>
34 1 Matthieu Herrb
nexus# copy run scp://matthieu@192.168.129.1/
35 1 Matthieu Herrb
</pre>
36 1 Matthieu Herrb
37 25 Laurent GUERBY
h3. Passwordless ssh
38 25 Laurent GUERBY
39 25 Laurent GUERBY
<pre>
40 27 Laurent GUERBY
n3064a# show user-account 
41 27 Laurent GUERBY
user:admin
42 27 Laurent GUERBY
        this user account has no expiry date
43 27 Laurent GUERBY
        roles:network-admin 
44 25 Laurent GUERBY
conf t
45 25 Laurent GUERBY
username admin sshkey ssh-rsa AAAA...
46 26 Laurent GUERBY
</pre>
47 25 Laurent GUERBY
48 25 Laurent GUERBY
Ensuite :
49 25 Laurent GUERBY
50 25 Laurent GUERBY
<pre>
51 25 Laurent GUERBY
(echo conf t;echo int e1/42;echo switchport access vlan 3189) |ssh n3064a
52 25 Laurent GUERBY
</pre>
53 25 Laurent GUERBY
54 1 Matthieu Herrb
h3. Config interface
55 1 Matthieu Herrb
56 1 Matthieu Herrb
<pre>
57 1 Matthieu Herrb
nexus# conf t
58 1 Matthieu Herrb
nexus(config)# interface ethernet 1/3
59 1 Matthieu Herrb
nexus(config-if)# switchport mode trunk
60 1 Matthieu Herrb
nexus(config-if)# exit
61 1 Matthieu Herrb
nexus(config)# exit
62 1 Matthieu Herrb
nexus#
63 1 Matthieu Herrb
</pre>
64 1 Matthieu Herrb
65 1 Matthieu Herrb
pour un vlan non taggé
66 1 Matthieu Herrb
<pre>
67 1 Matthieu Herrb
nexus(config-if)# switchport access vlan 3131
68 1 Matthieu Herrb
</pre>
69 1 Matthieu Herrb
70 2 Matthieu Herrb
h3. Etat des interfaces
71 3 Matthieu Herrb
72 1 Matthieu Herrb
<pre>
73 1 Matthieu Herrb
nexus# sh int status
74 1 Matthieu Herrb
nexus# sh int transceiver
75 1 Matthieu Herrb
nexus# sh int ethernet 1/1
76 16 Sebastien Badia
# Afficher le DOM d'une optique
77 16 Sebastien Badia
nexus# sh int Eth 1/1 tran de
78 1 Matthieu Herrb
</pre>
79 1 Matthieu Herrb
</pre>
80 2 Matthieu Herrb
81 1 Matthieu Herrb
h3. Boot
82 1 Matthieu Herrb
83 1 Matthieu Herrb
<pre>
84 1 Matthieu Herrb
nexus# conf t
85 1 Matthieu Herrb
nexus(config)# boot nxos bootflash:/nxos.7.0.3.I4.7.bin 
86 1 Matthieu Herrb
nexus(config)# boot order bootflash
87 1 Matthieu Herrb
nexus(config)# exit
88 1 Matthieu Herrb
nexus#
89 4 Matthieu Herrb
</pre>
90 4 Matthieu Herrb
91 15 Sebastien Badia
h3. Features et Misc
92 8 Laurent GUERBY
93 1 Matthieu Herrb
<pre>
94 15 Sebastien Badia
# Pour dire au switch d'accepter n'importe quel type de SFP
95 1 Matthieu Herrb
service unsupported-transceiver
96 15 Sebastien Badia
# Autoriser le switch à avoir une IP sur une interface VLAN
97 15 Sebastien Badia
feature interface-vlan
98 15 Sebastien Badia
# Activer les features LACP
99 15 Sebastien Badia
feature lacp
100 15 Sebastien Badia
# Activer la possiblité de faire du LLDP
101 15 Sebastien Badia
feature lldp
102 15 Sebastien Badia
# Mettre tous les ports en shutdown par défaut (penser à activer le port lors de la configuration avec un 'no shutdown'
103 15 Sebastien Badia
system default switchport shutdown
104 15 Sebastien Badia
</pre>
105 15 Sebastien Badia
106 15 Sebastien Badia
h3. Misc
107 15 Sebastien Badia
108 15 Sebastien Badia
<pre>
109 8 Laurent GUERBY
no password strength-check
110 8 Laurent GUERBY
111 13 Laurent GUERBY
nexus# sh mac address-table 
112 13 Laurent GUERBY
113 13 Laurent GUERBY
nexus# sh environment
114 13 Laurent GUERBY
(...) 
115 13 Laurent GUERBY
Temperature:
116 13 Laurent GUERBY
-------------------------------------------------------------------------
117 13 Laurent GUERBY
Module  Sensor             MajorThresh   MinorThres   CurTemp     Status 
118 13 Laurent GUERBY
                           (Celsius)     (Celsius)   (Celsius)           
119 13 Laurent GUERBY
-------------------------------------------------------------------------
120 13 Laurent GUERBY
1        Back-Right (D0)   70            44            33         Ok             
121 13 Laurent GUERBY
1        Back-Left  (D1)   70            42            29         Ok             
122 13 Laurent GUERBY
1        Front-Right(D2)   70            47            32         Ok             
123 13 Laurent GUERBY
1        Front-Left (D3)   70            49            30         Ok         
124 13 Laurent GUERBY
125 14 Laurent GUERBY
nexus# sh int e1/1 cap
126 14 Laurent GUERBY
nexus# sh int e1/1 tra det
127 14 Laurent GUERBY
128 1 Matthieu Herrb
129 1 Matthieu Herrb
# TODO verifier
130 1 Matthieu Herrb
conf t
131 1 Matthieu Herrb
int eth1/4
132 1 Matthieu Herrb
switchport trunk allowed vlan xxx
133 1 Matthieu Herrb
switchport trunk native vlan nnn
134 1 Matthieu Herrb
</pre>
135 19 Laurent GUERBY
136 22 Laurent GUERBY
h3. NTP
137 22 Laurent GUERBY
138 22 Laurent GUERBY
Client de nagios :
139 22 Laurent GUERBY
140 22 Laurent GUERBY
<pre>
141 22 Laurent GUERBY
conf t
142 22 Laurent GUERBY
ntp server 192.168.3.7
143 22 Laurent GUERBY
ntp source-interface  Vlan3175
144 22 Laurent GUERBY
</pre>
145 22 Laurent GUERBY
146 19 Laurent GUERBY
h3. 40G
147 19 Laurent GUERBY
148 19 Laurent GUERBY
40G <=> 4x10G reboot necessaire
149 19 Laurent GUERBY
https://www.cisco.com/c/en/us/td/docs/switches/datacenter/nexus3000/sw/interfaces/6_x/b_Cisco_n3k_Interfaces_Configuration_Guide_602_U11/b_Cisco_n3k_Interfaces_Configuration_Guide_602_U11_chapter_010.html
150 19 Laurent GUERBY
151 19 Laurent GUERBY
<pre>
152 19 Laurent GUERBY
conf t
153 19 Laurent GUERBY
hardware profile portmode 48x10g+4x40g
154 19 Laurent GUERBY
exit
155 19 Laurent GUERBY
reload
156 19 Laurent GUERBY
</pre>
157 19 Laurent GUERBY
158 19 Laurent GUERBY
4x10G :
159 19 Laurent GUERBY
160 19 Laurent GUERBY
<pre>
161 19 Laurent GUERBY
hardware profile portmode 64x10G
162 19 Laurent GUERBY
</pre>
163 19 Laurent GUERBY
164 24 Laurent GUERBY
h3. MPLS
165 8 Laurent GUERBY
166 24 Laurent GUERBY
https://www.cisco.com/c/en/us/td/docs/switches/datacenter/nexus3000/sw/label_switching/7x/b_Cisco_Nexus_3000_Series_NX-OS_Label_Switching_Configuration_Guide_7x/b_Cisco_Nexus_3000_Series_NX-OS_Label_Switching_Configuration_Guide_7x_chapter_010.html
167 24 Laurent GUERBY
<pre>
168 24 Laurent GUERBY
n3064a# show feature-set 
169 24 Laurent GUERBY
Feature Set Name      ID        State   
170 24 Laurent GUERBY
--------------------  --------  --------
171 24 Laurent GUERBY
fex                    3          uninstalled
172 24 Laurent GUERBY
mpls                   4          uninstalled
173 24 Laurent GUERBY
fabric                 7          uninstalled
174 24 Laurent GUERBY
fcoe-npv               8          uninstalled
175 24 Laurent GUERBY
</pre>
176 24 Laurent GUERBY
177 24 Laurent GUERBY
Linux
178 24 Laurent GUERBY
<pre>
179 24 Laurent GUERBY
20180312 09:09:57<guerby> test du lundi matin sur kernel 4.16-rc4 avec iproute2 4.15.0:  ip route add 10.1.1.0/30 encap mpls 200/300 dev eth0 et tcpdump donne
180 24 Laurent GUERBY
20180312 09:09:59<guerby> 09:07:56.394863 70:85:c2:3a:17:2a > ff:ff:ff:ff:ff:ff, ethertype MPLS unicast (0x8847), length 106: MPLS (label 200, exp 0, ttl 64) (label 300, exp 0, [S], ttl 64) 91.224.148.12 > 10.1.1.1: ICMP echo request, id 25171, seq 37, length 64
181 24 Laurent GUERBY
</pre>
182 24 Laurent GUERBY
183 4 Matthieu Herrb
h2. Infos
184 4 Matthieu Herrb
185 4 Matthieu Herrb
<pre>
186 4 Matthieu Herrb
nexus# sh version
187 4 Matthieu Herrb
Cisco Nexus Operating System (NX-OS) Software
188 4 Matthieu Herrb
TAC support: http://www.cisco.com/tac
189 4 Matthieu Herrb
Copyright (C) 2002-2017, Cisco and/or its affiliates.
190 4 Matthieu Herrb
All rights reserved.
191 4 Matthieu Herrb
The copyrights to certain works contained in this software are
192 4 Matthieu Herrb
owned by other third parties and used and distributed under their own
193 4 Matthieu Herrb
licenses, such as open source.  This software is provided "as is," and unless
194 4 Matthieu Herrb
otherwise stated, there is no warranty, express or implied, including but not
195 4 Matthieu Herrb
limited to warranties of merchantability and fitness for a particular purpose.
196 4 Matthieu Herrb
Certain components of this software are licensed under
197 4 Matthieu Herrb
the GNU General Public License (GPL) version 2.0 or 
198 4 Matthieu Herrb
GNU General Public License (GPL) version 3.0  or the GNU
199 4 Matthieu Herrb
Lesser General Public License (LGPL) Version 2.1 or 
200 4 Matthieu Herrb
Lesser General Public License (LGPL) Version 2.0. 
201 4 Matthieu Herrb
A copy of each such license is available at
202 4 Matthieu Herrb
http://www.opensource.org/licenses/gpl-2.0.php and
203 4 Matthieu Herrb
http://opensource.org/licenses/gpl-3.0.html and
204 4 Matthieu Herrb
http://www.opensource.org/licenses/lgpl-2.1.php and
205 4 Matthieu Herrb
http://www.gnu.org/licenses/old-licenses/library.txt.
206 4 Matthieu Herrb
207 4 Matthieu Herrb
Software
208 4 Matthieu Herrb
  BIOS: version 4.0.0
209 4 Matthieu Herrb
  NXOS: version 7.0(3)I4(7)
210 4 Matthieu Herrb
  BIOS compile time:  12/05/2016
211 4 Matthieu Herrb
  NXOS image file is: bootflash:///nxos.7.0.3.I4.7.bin
212 4 Matthieu Herrb
  NXOS compile time:  6/28/2017 14:00:00 [06/28/2017 21:53:29]
213 4 Matthieu Herrb
214 4 Matthieu Herrb
215 4 Matthieu Herrb
Hardware
216 4 Matthieu Herrb
  cisco Nexus3000 C3064PQ Chassis 
217 4 Matthieu Herrb
  Intel(R) Celeron(R) CPU        P4505  @ 1.87GHz with 3903284 kB of memory.
218 4 Matthieu Herrb
  Processor Board ID FOC17342TSZ
219 4 Matthieu Herrb
220 4 Matthieu Herrb
  Device name: nexus
221 4 Matthieu Herrb
  bootflash:    1638000 kB
222 4 Matthieu Herrb
  usb1:               0 kB (expansion flash)
223 4 Matthieu Herrb
224 4 Matthieu Herrb
Kernel uptime is 0 day(s), 2 hour(s), 10 minute(s), 12 second(s)
225 4 Matthieu Herrb
226 4 Matthieu Herrb
Last reset at 335975 usecs after  Wed Feb 14 15:25:27 2018
227 4 Matthieu Herrb
228 4 Matthieu Herrb
  Reason: Reset Requested by CLI command reload
229 4 Matthieu Herrb
  System version: 7.0(3)I4(7)
230 4 Matthieu Herrb
  Service: 
231 4 Matthieu Herrb
232 4 Matthieu Herrb
plugin
233 4 Matthieu Herrb
  Core Plugin, Ethernet Plugin
234 4 Matthieu Herrb
235 4 Matthieu Herrb
Active Package(s):
236 5 Matthieu Herrb
237 12 Laurent GUERBY
nexus# sh inventory all
238 5 Matthieu Herrb
NAME: "Chassis",  DESCR: "Nexus3000 C3064PQ Chassis"             
239 5 Matthieu Herrb
PID: N3K-C3064PQ-10GX    ,  VID: V01 ,  SN: FOC1734R15F          
240 5 Matthieu Herrb
241 5 Matthieu Herrb
NAME: "Slot 1",  DESCR: "48x10GE + 4x40G Supervisor"            
242 5 Matthieu Herrb
PID: N3K-C3064PQ-10GX    ,  VID: V01 ,  SN: FOC17342TSZ          
243 5 Matthieu Herrb
244 5 Matthieu Herrb
NAME: "Power Supply 1",  DESCR: "Nexus3000 C3064PQ Chassis Power Supply"
245 5 Matthieu Herrb
PID: N2200-PAC-400W      ,  VID: V04 ,  SN: DTN1733P0VH          
246 5 Matthieu Herrb
247 5 Matthieu Herrb
NAME: "Power Supply 2",  DESCR: "Nexus3000 C3064PQ Chassis Power Supply"
248 5 Matthieu Herrb
PID: N2200-PAC-400W      ,  VID: V04 ,  SN: DTN1733P0UK          
249 5 Matthieu Herrb
250 5 Matthieu Herrb
NAME: "Fan 1",  DESCR: "Nexus3000 C3064PQ Chassis Fan Module"  
251 1 Matthieu Herrb
PID: N3K-C3064-FAN-F     ,  VID: V00 ,  SN: N/A                  
252 12 Laurent GUERBY
253 12 Laurent GUERBY
NAME: Ethernet1/1,  DESCR: FiberStore                              
254 12 Laurent GUERBY
PID: SFP-H10GB-ACU10M    ,  VID: SFP-10G-AOC     ,  SN: F176CO35764-1    
255 23 Laurent GUERBY
256 23 Laurent GUERBY
nexus# sh license 
257 23 Laurent GUERBY
license_FOC1734R15F_12_1.lic:
258 23 Laurent GUERBY
SERVER this_host ANY
259 23 Laurent GUERBY
VENDOR cisco
260 23 Laurent GUERBY
FEATURE LAN_BASE_SERVICES_PKG cisco 1.0 permanent uncounted \
261 23 Laurent GUERBY
        VENDOR_STRING=<LIC_SOURCE>NEXUS_PRODUCTION</LIC_SOURCE><SKU>N3K-BAS1K9</SKU> \
262 23 Laurent GUERBY
        HOSTID=VDH=FOC1734R15F \
263 23 Laurent GUERBY
        NOTICE=<LicFileID>20131030222602000</LicFileID><LicLineID>1</LicLineID><PAK>N3K-C3064PQ-10GXFOC1734R15F</PAK> \
264 23 Laurent GUERBY
        SIGN=BBF8EBE2F7B6
265 23 Laurent GUERBY
FEATURE LAN_ENTERPRISE_SERVICES_PKG cisco 1.0 permanent uncounted \
266 23 Laurent GUERBY
        VENDOR_STRING=<LIC_SOURCE>NEXUS_PRODUCTION</LIC_SOURCE><SKU>N3K-LAN1K9</SKU> \
267 23 Laurent GUERBY
        HOSTID=VDH=FOC1734R15F \
268 23 Laurent GUERBY
        NOTICE=<LicFileID>20131030222602000</LicFileID><LicLineID>2</LicLineID><PAK>N3K-C3064PQ-10GXFOC1734R15F</PAK> \
269 23 Laurent GUERBY
        SIGN=FF75EB18A86E
270 23 Laurent GUERBY
271 23 Laurent GUERBY
</pre>
272 23 Laurent GUERBY
273 28 Laurent GUERBY
h2. Boot log
274 28 Laurent GUERBY
275 28 Laurent GUERBY
screen /dev/ttyUSB0 9600 8n1
276 28 Laurent GUERBY
277 28 Laurent GUERBY
A la question entrer "skip" puis login "admin" password vide.
278 28 Laurent GUERBY
279 28 Laurent GUERBY
<pre>
280 28 Laurent GUERBY
Press  ctrl L to go to loader prompt in 2 secs
281 28 Laurent GUERBY
282 28 Laurent GUERBY
Booting kickstart image: bootflash:/nxos.7.0.3.I7.2.bin
283 28 Laurent GUERBY
CardIndex = 11060
284 28 Laurent GUERBY
 Image valid
285 28 Laurent GUERBY
graphics_set_kernel_params enter: 
286 28 Laurent GUERBY
Installing klm_card_index
287 28 Laurent GUERBY
done
288 28 Laurent GUERBY
INIT: version 2.88 booting
289 28 Laurent GUERBY
Skipping ata_piix install for n3k.
290 28 Laurent GUERBY
Unsquashing rootfs ...
291 28 Laurent GUERBY
Removing libcrdcfgdata and linking libcrdcfgdata3nk
292 28 Laurent GUERBY
Installing isan procfs ... done.
293 28 Laurent GUERBY
Installing SSE module with card index 11060 ... done.
294 28 Laurent GUERBY
Creating SSE device node 246 ... done.
295 28 Laurent GUERBY
Loading I2C driver ... done.
296 28 Laurent GUERBY
Installing CCTRL driver for card_type 30 without NEED_GEM ... done.
297 28 Laurent GUERBY
10.20: Interrupt throttling disabled. No cctrl irq detected.
298 28 Laurent GUERBY
Loading IGB driver ... done.
299 28 Laurent GUERBY
300 28 Laurent GUERBY
Checking all filesystems.Current boot disk sda3..
301 28 Laurent GUERBY
302 28 Laurent GUERBY
Installing SPROM driver ... IS_N3K done.
303 28 Laurent GUERBY
Skipping installing default sprom values for N3k...
304 28 Laurent GUERBY
Installing pfmsvcs module with SPROM card index 11060 ... done.
305 28 Laurent GUERBY
Installing nvram module ... done.
306 28 Laurent GUERBY
Installing if_index module with port mode 1 ... done.
307 28 Laurent GUERBY
Installing fcfwd stub
308 28 Laurent GUERBY
Installing RNI lcnd ... done
309 28 Laurent GUERBY
Installing LC netdev ... done
310 28 Laurent GUERBY
Installing psdev module ... done.
311 28 Laurent GUERBY
Installing veobc module ... done.
312 28 Laurent GUERBY
Inserting OBFL module ... done.
313 28 Laurent GUERBY
Making OBFL character devices
314 28 Laurent GUERBY
Mounting OBFL pstore for mtd
315 28 Laurent GUERBY
Starting OpenBSD Secure Shell server: sshd ... done.
316 28 Laurent GUERBY
Trim files after extracting TOR files ...
317 28 Laurent GUERBY
tune2fs 1.42.1 (17-Feb-2012)
318 28 Laurent GUERBY
Setting reserved blocks percentage to 0% (0 blocks)
319 28 Laurent GUERBY
Starting portmap daemon...
320 28 Laurent GUERBY
creating NFS state directory: done
321 28 Laurent GUERBY
starting 8 nfsd kernel threads: done
322 28 Laurent GUERBY
starting mountd: done
323 28 Laurent GUERBY
starting statd: done
324 28 Laurent GUERBY
Saving image for img-sync ...
325 28 Laurent GUERBY
Loading system software
326 28 Laurent GUERBY
Installing local RPMS
327 28 Laurent GUERBY
Patch Repository Setup completed successfully
328 28 Laurent GUERBY
Creating /dev/mcelog
329 28 Laurent GUERBY
Starting mcelog daemon
330 28 Laurent GUERBY
Removing dme lib
331 28 Laurent GUERBY
Moving N3K specific syslog config file
332 28 Laurent GUERBY
INIT: Entering runlevel: 3
333 28 Laurent GUERBY
Running S93thirdparty-script...
334 28 Laurent GUERBY
335 28 Laurent GUERBY
Populating conf files for hybrid sysmgr ...
336 28 Laurent GUERBY
Removing bios-imgs and /lcimages
337 28 Laurent GUERBY
Starting hybrid sysmgr ...
338 28 Laurent GUERBY
inserting /isan/lib/modules/klm_cisco_nb.o ... done
339 28 Laurent GUERBY
Executing Prune clis.
340 28 Laurent GUERBY
2012 Jul 17 16:09:10  %$ VDC-1 %$ %USER-0-SYSTEM_MSG:  pfm_init; line 1496   - pfm
341 28 Laurent GUERBY
2012 Jul 17 16:09:11  %$ VDC-1 %$ %PLATFORM-2-PS_FAIL: Power supply 1 failed or shut down (Serial number DTN1710P431)
342 28 Laurent GUERBY
2012 Jul 17 16:09:11  %$ VDC-1 %$ %PLATFORM-2-PS_OK: Power supply 2 ok (Serial number DTN1801P09K)
343 28 Laurent GUERBY
2012 Jul 17 16:09:11  %$ VDC-1 %$ %PLATFORM-2-PS_FANOK: Fan in Power supply 2 ok
344 28 Laurent GUERBY
2012 Jul 17 16:09:11  %$ VDC-1 %$ %PLATFORM-2-PS_ABSENT: Power supply 1 is absent/shutdown, ps-redundancy might be affected
345 28 Laurent GUERBY
2012 Jul 17 16:09:11  %$ VDC-1 %$ %PLATFORM-2-PS_RED_MODE_CHG: Power supply operational redundancy mode changed to non-redundant
346 28 Laurent GUERBY
2012 Jul 17 16:09:11  %$ VDC-1 %$ %PLATFORM-2-FANMOD_FAN_OK: Fan module 1 (Fan1(sys_fan1) fan) ok
347 28 Laurent GUERBY
2012 Jul 17 16:09:11  %$ VDC-1 %$ %USER-0-SYSTEM_MSG:  before access to bkout_cfg  - clis
348 28 Laurent GUERBY
2012 Jul 17 16:09:17  %$ VDC-1 %$ netstack: Registration with cli server complete
349 28 Laurent GUERBY
2012 Jul 17 16:09:32  %$ VDC-1 %$ %USER-2-SYSTEM_MSG: ssnmgr_app_init called on ssnmgr up - aclmgr
350 28 Laurent GUERBY
2012 Jul 17 16:09:41  %$ VDC-1 %$ %USER-0-SYSTEM_MSG: end of default policer - copp
351 28 Laurent GUERBY
2012 Jul 17 16:09:52  %$ VDC-1 %$ %VDC_MGR-2-VDC_ONLINE: vdc 1 has come online 
352 28 Laurent GUERBY
Waiting for system online status before starting POAP ...
353 28 Laurent GUERBY
Starting Power On Auto Provisioning...2012 Jul 17 16:10:21 switch %$ VDC-1 %$ %ASCII-CFG-2-CONF_CONTROL: System ready
354 28 Laurent GUERBY
Done
355 28 Laurent GUERBY
356 28 Laurent GUERBY
Abort Power On Auto Provisioning [yes - continue with normal setup, skip - bypass password and basic configuration, no - continue with Power On Auto Provisioning] (yes/skip/no)[no]: 2012 Jul 17 16:10:25 switch %$ VDC-1 %$ %POAP-2-POAP_INITED: [FOC1636R174-6C:20:56:E6:D4:01] - POAP process initialized                                                                                                                                                                                                                                                   
357 28 Laurent GUERBY
2012 Jul 17 16:10:46 switch %$ VDC-1 %$ %POAP-2-POAP_INFO: [FOC1636R174-6C:20:56:E6:D4:01] - USB Initializing Success
358 28 Laurent GUERBY
2012 Jul 17 16:10:46 switch %$ VDC-1 %$ %POAP-2-POAP_INFO: [FOC1636R174-6C:20:56:E6:D4:01] - USB disk not detected
359 28 Laurent GUERBY
2012 Jul 17 16:10:46 switch %$ VDC-1 %$ last message repeated 1 time
360 28 Laurent GUERBY
2012 Jul 17 16:10:46 switch %$ VDC-1 %$ %POAP-2-POAP_DHCP_DISCOVER_START: [FOC1636R174-6C:20:56:E6:D4:01] - POAP DHCP Discover phase started
361 28 Laurent GUERBY
2012 Jul 17 16:10:46 switch %$ VDC-1 %$ %POAP-2-POAP_INFO:   - Abort Power On Auto Provisioning [yes - continue with normal setup, skip - bypass password and basic configuration, no - continue with Power On Auto Provisioning] (yes/skip/no)[no]: 
362 28 Laurent GUERBY
2012 Jul 17 16:10:46 switch %$ VDC-1 %$ %POAP-2-POAP_FAILURE: [FOC1636R174-6C:20:56:E6:D4:01] - POAP DHCP discover phase failed
363 28 Laurent GUERBY
2012 Jul 17 16:10:48 switch %$ VDC-1 %$ %POAP-2-POAP_INFO:   - Abort Power On Auto Provisioning [yes - continue with normal setup, skip - bypass password and basic configuration, no - continue with Power On Auto Provisioning] (yes/skip/no)[no]: 
364 28 Laurent GUERBY
2012 Jul 17 16:10:51 switch %$ VDC-1 %$ %POAP-2-POAP_INFO: [FOC1636R174-6C:20:56:E6:D4:01] - USB Initializing Success
365 28 Laurent GUERBY
2012 Jul 17 16:10:51 switch %$ VDC-1 %$ %POAP-2-POAP_INFO: [FOC1636R174-6C:20:56:E6:D4:01] - USB disk not detected
366 28 Laurent GUERBY
2012 Jul 17 16:10:51 switch %$ VDC-1 %$ last message repeated 1 time
367 28 Laurent GUERBY
2012 Jul 17 16:10:51 switch %$ VDC-1 %$ %POAP-2-POAP_DHCP_DISCOVER_START: [FOC1636R174-6C:20:56:E6:D4:01] - POAP DHCP Discover phase started
368 28 Laurent GUERBY
2012 Jul 17 16:10:51 switch %$ VDC-1 %$ %POAP-2-POAP_INFO:   - Abort Power On Auto Provisioning [yes - continue with normal setup, skip - bypass password and basic configuration, no - continue with Power On Auto Provisioning] (yes/skip/no)[no]: 
369 28 Laurent GUERBY
2012 Jul 17 16:10:51 switch %$ VDC-1 %$ %POAP-2-POAP_FAILURE: [FOC1636R174-6C:20:56:E6:D4:01] - POAP DHCP discover phase failed
370 28 Laurent GUERBY
2012 Jul 17 16:10:53 switch %$ VDC-1 %$ %POAP-2-POAP_INFO:   - Abort Power On Auto Provisioning [yes - continue with normal setup, skip - bypass password and basic configuration, no - continue with Power On Auto Provisioning] (yes/skip/no)[no]: 
371 28 Laurent GUERBY
2012 Jul 17 16:10:57 switch %$ VDC-1 %$ %POAP-2-POAP_INFO: [FOC1636R174-6C:20:56:E6:D4:01] - USB Initializing Success
372 28 Laurent GUERBY
2012 Jul 17 16:10:57 switch %$ VDC-1 %$ %POAP-2-POAP_INFO: [FOC1636R174-6C:20:56:E6:D4:01] - USB disk not detected
373 28 Laurent GUERBY
2012 Jul 17 16:10:57 switch %$ VDC-1 %$ last message repeated 1 time
374 28 Laurent GUERBY
2012 Jul 17 16:10:57 switch %$ VDC-1 %$ %POAP-2-POAP_DHCP_DISCOVER_START: [FOC1636R174-6C:20:56:E6:D4:01] - POAP DHCP Discover phase started
375 28 Laurent GUERBY
2012 Jul 17 16:10:57 switch %$ VDC-1 %$ %POAP-2-POAP_INFO:   - Abort Power On Auto Provisioning [yes - continue with normal setup, skip - bypass password and basic configuration, no - continue with Power On Auto Provisioning] (yes/skip/no)[no]: 
376 28 Laurent GUERBY
2012 Jul 17 16:10:57 switch %$ VDC-1 %$ %POAP-2-POAP_FAILURE: [FOC1636R174-6C:20:56:E6:D4:01] - POAP DHCP discover phase failed
377 28 Laurent GUERBY
2012 Jul 17 16:10:59 switch %$ VDC-1 %$ %POAP-2-POAP_INFO:   - Abort Power On Auto Provisioning [yes - continue with normal setup, skip - bypass password and basic configuration, no - continue with Power On Auto Provisioning] (yes/skip/no)[no]: 
378 28 Laurent GUERBY
2012 Jul 17 16:11:03 switch %$ VDC-1 %$ %POAP-2-POAP_INFO: [FOC1636R174-6C:20:56:E6:D4:01] - USB Initializing Success
379 28 Laurent GUERBY
2012 Jul 17 16:11:03 switch %$ VDC-1 %$ %POAP-2-POAP_INFO: [FOC1636R174-6C:20:56:E6:D4:01] - USB disk not detected
380 28 Laurent GUERBY
2012 Jul 17 16:11:03 switch %$ VDC-1 %$ last message repeated 1 time
381 28 Laurent GUERBY
2012 Jul 17 16:11:03 switch %$ VDC-1 %$ %POAP-2-POAP_DHCP_DISCOVER_START: [FOC1636R174-6C:20:56:E6:D4:01] - POAP DHCP Discover phase started
382 28 Laurent GUERBY
2012 Jul 17 16:11:03 switch %$ VDC-1 %$ %POAP-2-POAP_INFO:   - Abort Power On Auto Provisioning [yes - continue with normal setup, skip - bypass password and basic configuration, no - continue with Power On Auto Provisioning] (yes/skip/no)[no]: 
383 28 Laurent GUERBY
2012 Jul 17 16:11:03 switch %$ VDC-1 %$ %POAP-2-POAP_FAILURE: [FOC1636R174-6C:20:56:E6:D4:01] - POAP DHCP discover phase failed
384 28 Laurent GUERBY
skip
385 28 Laurent GUERBY
!!! NOTE: You have selected skip option. POAP will be aborted and password configuration will be skipped !!!
386 28 Laurent GUERBY
Disabling POAP.......2012 Jul 17 16:11:05 switch %$ VDC-1 %$ %POAP-2-POAP_INFO:   - Abort Power On Auto Provisioning [yes - continue with normal setup, skip - bypass password and basic configuration, no - continue with Power On Auto Provisioning] (yes/skip/no)[no]: 
387 28 Laurent GUERBY
Disabling POAP
388 28 Laurent GUERBY
2012 Jul 17 16:11:08 switch %$ VDC-1 %$ %POAP-2-POAP_INFO: [FOC1636R174-6C:20:56:E6:D4:01] - USB Initializing Success
389 28 Laurent GUERBY
2012 Jul 17 16:11:09 switch %$ VDC-1 %$ %POAP-2-POAP_INFO: [FOC1636R174-6C:20:56:E6:D4:01] - USB disk not detected
390 28 Laurent GUERBY
2012 Jul 17 16:11:09 switch %$ VDC-1 %$ last message repeated 1 time
391 28 Laurent GUERBY
2012 Jul 17 16:11:09 switch %$ VDC-1 %$ %POAP-2-POAP_DHCP_DISCOVER_START: [FOC1636R174-6C:20:56:E6:D4:01] - POAP DHCP Discover phase started
392 28 Laurent GUERBY
2012 Jul 17 16:11:09 switch %$ VDC-1 %$ %POAP-2-POAP_INFO:   - Abort Power On Auto Provisioning [yes - continue with normal setup, skip - bypass password and basic configuration, no - continue with Power On Auto Provisioning] (yes/skip/no)[no]: 
393 28 Laurent GUERBY
skip
394 28 Laurent GUERBY
Enabling feature lldp by default
395 28 Laurent GUERBY
Basic configuration has been skipped!
396 28 Laurent GUERBY
Applying default configuration
397 28 Laurent GUERBY
N3K:Applying Default CoPP configuration
398 28 Laurent GUERBY
399 28 Laurent GUERBY
400 28 Laurent GUERBY
401 28 Laurent GUERBY
User Access Verification
402 28 Laurent GUERBY
 login: admin
403 28 Laurent GUERBY
Password: 
404 28 Laurent GUERBY
405 28 Laurent GUERBY
Cisco Nexus Operating System (NX-OS) Software
406 28 Laurent GUERBY
TAC support: http://www.cisco.com/tac
407 28 Laurent GUERBY
Copyright (C) 2002-2017, Cisco and/or its affiliates.
408 28 Laurent GUERBY
All rights reserved.
409 28 Laurent GUERBY
The copyrights to certain works contained in this software are
410 28 Laurent GUERBY
owned by other third parties and used and distributed under their own
411 28 Laurent GUERBY
licenses, such as open source.  This software is provided "as is," and unless
412 28 Laurent GUERBY
otherwise stated, there is no warranty, express or implied, including but not
413 28 Laurent GUERBY
limited to warranties of merchantability and fitness for a particular purpose.
414 28 Laurent GUERBY
Certain components of this software are licensed under
415 28 Laurent GUERBY
the GNU General Public License (GPL) version 2.0 or 
416 28 Laurent GUERBY
GNU General Public License (GPL) version 3.0  or the GNU
417 28 Laurent GUERBY
Lesser General Public License (LGPL) Version 2.1 or 
418 28 Laurent GUERBY
Lesser General Public License (LGPL) Version 2.0. 
419 28 Laurent GUERBY
A copy of each such license is available at
420 28 Laurent GUERBY
http://www.opensource.org/licenses/gpl-2.0.php and
421 28 Laurent GUERBY
http://opensource.org/licenses/gpl-3.0.html and
422 28 Laurent GUERBY
http://www.opensource.org/licenses/lgpl-2.1.php and
423 28 Laurent GUERBY
http://www.gnu.org/licenses/old-licenses/library.txt.
424 28 Laurent GUERBY
switch# 
425 28 Laurent GUERBY
</pre>
426 23 Laurent GUERBY
427 29 Laurent GUERBY
<pre>
428 29 Laurent GUERBY
switch# show version
429 29 Laurent GUERBY
Cisco Nexus Operating System (NX-OS) Software
430 29 Laurent GUERBY
TAC support: http://www.cisco.com/tac
431 29 Laurent GUERBY
Copyright (C) 2002-2017, Cisco and/or its affiliates.
432 29 Laurent GUERBY
All rights reserved.
433 29 Laurent GUERBY
The copyrights to certain works contained in this software are
434 29 Laurent GUERBY
owned by other third parties and used and distributed under their own
435 29 Laurent GUERBY
licenses, such as open source.  This software is provided "as is," and unless
436 29 Laurent GUERBY
otherwise stated, there is no warranty, express or implied, including but not
437 29 Laurent GUERBY
limited to warranties of merchantability and fitness for a particular purpose.
438 29 Laurent GUERBY
Certain components of this software are licensed under
439 29 Laurent GUERBY
the GNU General Public License (GPL) version 2.0 or 
440 29 Laurent GUERBY
GNU General Public License (GPL) version 3.0  or the GNU
441 29 Laurent GUERBY
Lesser General Public License (LGPL) Version 2.1 or 
442 29 Laurent GUERBY
Lesser General Public License (LGPL) Version 2.0. 
443 29 Laurent GUERBY
A copy of each such license is available at
444 29 Laurent GUERBY
http://www.opensource.org/licenses/gpl-2.0.php and
445 29 Laurent GUERBY
http://opensource.org/licenses/gpl-3.0.html and
446 29 Laurent GUERBY
http://www.opensource.org/licenses/lgpl-2.1.php and
447 29 Laurent GUERBY
http://www.gnu.org/licenses/old-licenses/library.txt.
448 29 Laurent GUERBY
449 29 Laurent GUERBY
Software
450 29 Laurent GUERBY
  BIOS: version 4.5.0
451 29 Laurent GUERBY
  NXOS: version 7.0(3)I7(2)
452 29 Laurent GUERBY
  BIOS compile time:  11/09/2017
453 29 Laurent GUERBY
  NXOS image file is: bootflash:///nxos.7.0.3.I7.2.bin
454 29 Laurent GUERBY
  NXOS compile time:  11/22/2017 13:00:00 [11/22/2017 21:55:29]
455 29 Laurent GUERBY
456 29 Laurent GUERBY
457 29 Laurent GUERBY
Hardware
458 29 Laurent GUERBY
  cisco Nexus3000 C3064PQ Chassis 
459 29 Laurent GUERBY
  Intel(R) Celeron(R) CPU        P4505  @ 1.87GHz with 3902872 kB of memory.
460 29 Laurent GUERBY
  Processor Board ID FOC16382AE1
461 29 Laurent GUERBY
462 29 Laurent GUERBY
  Device name: switch
463 29 Laurent GUERBY
  bootflash:    1635720 kB
464 29 Laurent GUERBY
  usb1:               0 kB (expansion flash)
465 29 Laurent GUERBY
466 29 Laurent GUERBY
Kernel uptime is 0 day(s), 0 hour(s), 7 minute(s), 5 second(s)
467 29 Laurent GUERBY
468 29 Laurent GUERBY
Last reset 
469 29 Laurent GUERBY
  Reason: Unknown
470 29 Laurent GUERBY
  System version: 7.0(3)I7(2)
471 29 Laurent GUERBY
  Service: 
472 29 Laurent GUERBY
473 29 Laurent GUERBY
plugin
474 29 Laurent GUERBY
  Core Plugin, Ethernet Plugin
475 29 Laurent GUERBY
476 29 Laurent GUERBY
Active Package(s):
477 29 Laurent GUERBY
478 29 Laurent GUERBY
switch# 
479 29 Laurent GUERBY
480 29 Laurent GUERBY
</pre>
481 29 Laurent GUERBY
482 7 Laurent GUERBY
h2. Consommation
483 6 Laurent GUERBY
484 6 Laurent GUERBY
77 Watt, cos phi 0.92, pas de pic pendant le boot