Projet

Général

Profil

NXOS » Historique » Version 31

Laurent GUERBY, 15/07/2018 16:56

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