Ben's notes

Linux, Unix, network, radio...

User Tools

Site Tools


cisco_csr1000v

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
cisco_csr1000v [2014/08/14 09:44] – [Cisco CSR1000V / IOS XE - KVM] admincisco_csr1000v [2021/10/09 15:14] (current) – external edit 127.0.0.1
Line 1: Line 1:
 {{tag>[network cisco ios xe]}} {{tag>[network cisco ios xe]}}
-~~TOC~~ 
 =====Cisco CSR1000V / IOS XE - KVM===== =====Cisco CSR1000V / IOS XE - KVM=====
 //I'm running this on CentOS 6.5// //I'm running this on CentOS 6.5//
Line 37: Line 36:
 The current throughput level is 2500 kb/s The current throughput level is 2500 kb/s
 </code> </code>
-  * Accept the license: <code>Router>conf t+  * Cisco CSR 1000V offers a 60-day evaluation license. The evaluation license is for the Premium technology package. Accept the license: <code>Router>conf t
 #license accept end user agreement</code> #license accept end user agreement</code>
   * Configure evaluation licence. <code>#license boot level premium</code>   * Configure evaluation licence. <code>#license boot level premium</code>
Line 59: Line 58:
 </code> </code>
  
 +===Configure IP===
 +  * Show interfaces. <code>#sh ip int br
 +Interface              IP-Address      OK? Method Status                Protocol
 +GigabitEthernet1       unassigned      YES NVRAM  administratively down down    
 +GigabitEthernet2       unassigned      YES NVRAM  administratively down down    
 +GigabitEthernet3       unassigned      YES NVRAM  administratively down down    </code>
 +  * Create management VRF. <code>conf t
 +Router(config)#ip vrf mgmt-irf 
 +Router(config-vrf)#int g1           
 +Router(config-if)#ip vrf forwarding mgmt-vrf
 +Router(config-if)#^Z
  
 +#sh run int g1
 +Building configuration...
  
 +Current configuration : 105 bytes
 +!
 +interface GigabitEthernet1
 + ip vrf forwarding mgmt-vrf
 + no ip address
 + shutdown
 + negotiation auto
 +end</code>
 +  * Configure IP address. <code>conf t
 +Router(config)#int g1
 +Router(config-if)#ip add 1.2.3.4 255.255.255.0
 +Router(config-if)#no shut
 +Router(config-if)#^Z
  
 +</code>
 +  * Show interfaces. <code>Router#sh ip int br
 +Interface              IP-Address      OK? Method Status                Protocol
 +GigabitEthernet1       1.2.3.4         YES manual up                    up      
 +GigabitEthernet2       unassigned      YES NVRAM  administratively down down    
 +GigabitEthernet3       unassigned      YES NVRAM  administratively down down    </code>
 +  * Ping test. <code>Router#ping vrf mgmt-vrf 1.2.3.2
 +Type escape sequence to abort.
 +Sending 5, 100-byte ICMP Echos to 1.2.3.2, timeout is 2 seconds:
 +.!!!!
 +Success rate is 80 percent (4/5), round-trip min/avg/max = 1/2/4 ms</code>
cisco_csr1000v.txt · Last modified: 2021/10/09 15:14 by 127.0.0.1