Category: <span>Cisco</span>

For checking transmission links on Cisco Routers, it is good to know how to find out the optical power of 100GE modules or interfaces for troubleshooting and making sure the desired or optimal range is meet. Here are the sample commands for checking the TX/RX optical power. show controllers <100G interface name> phy Sample Output: RP/0/RSP0/CPU0:CISCO-ROUTER#show controllers HundredGigE0/1/0/0 phy PHY data for interface: HundredGigE0/1/0/0 Rx 64B66B Lane Sync PCS Virt PCS Service Block Marker Header Lane Lane Lane Lane Lock…

Cisco

PAT or Port Address Translation or also known as NAT Overloading is like a modified form of dynamic NAT where multiple inside local addresses are translated to single inside global IP address. It is the most popular form of NAT as the setup is the same what we use on our home connectivity as your Internet Service Provider (ISP) usually will only provide you 1 public IP to communicate with their internet router. Just remember the word many-to-one mapping. Objective:…

Cisco

Here are the basic configuration on implementing different types of Network Address Translation (NAT) on Cisco Routers. Fig.1 Static NAT (1-to-1 Translation) (Objective: to translate PC-1 private IP of 192.168.0.2 to public IP 200.200.200.3) Configuration: Router1 Main Static NAT configuration: ip nat inside source static <Inside local IP> <Inside global IP> Sample Config: Router1(config)# ip nat inside source static 192.168.0.2 200.200.200.3 interface FastEthernet0/0 description Connection to PC-1 ip address 192.168.0.1 255.255.255.0 ip nat inside interface FastEthernet0/1 description Connection to Router2…

Cisco

Here are the sample steps on finding the interface where the host is connected based on IP address or MAC address on Cisco Catalyst L3 Switch running on Cisco IOS Scenario 1: IP address is given, find which interface it is connected IP address: 192.168.0.35 a. Find the routing entry for the IP to know where it is connected show ip route <IP> SWITCH1#show ip route 192.168.0.35 Routing entry for 192.168.0.32/29 Known via “connected”, distance 0, metric 0 (connected, via…

Cisco

Here are the sample steps on finding the interface where the host is connected based on IP address or MAC address on Cisco Switch Nexus 7000 series running in Nexus OS. Scenario 1: IP address is given, find which interface it is connected IP address: 192.168.15.6 a. Find the routing entry for the IP to know where it is connected show ip route <IP> NEXUS7000# show ip route 192.168.15.6 IP Route Table for VRF “default” ‘*’ denotes best ucast next-hop…

Cisco

Note: This steps are based on bridge domain/VPLS  setup on Cisco ASR 9000 running Cisco IOS-XR. For normal routed interfaces,  you can find it using the command: show arp <interface> Scenario 1: IP address is given, find which interface it is connected IP address: 192.168.15.6 a. Find the routing entry for the IP to know where it is connected show route <IP> RP/0/RSP1/CPU0:ASR9K#show route 192.168.15.6 Routing entry for 192.168.15.0/29 Known via “connected”, distance 0, metric 0 (connected) Installed May 16…

Cisco

Objective: To separate management traffic from data/customer traffic on your Cisco Catalyst 4500 L3 Switch Preferably, Data and Management are into 2 separate network domains. Pre-requisite: UTP cable to connect to management port (via FastEthernet 1) and the other end is connected to a network switch to access the OOB management gateway Tested on Cisco IOS Version 15.1 (Cisco Catalyst 4948E) * * Management IP Configuration* *  1. Configure the vrf for management vrf definition management ! address-family ipv4 exit-address-family ! address-family ipv6…

Cisco

Cisco BVI (Bridge Virtual Interface) enables Layer 3 routing on a bridge group, connecting different Layer 2 networks. BVI (Bridge Group Virtual Interface) is a routed interface that represents a set of interfaces that gets bridge. Here is the sample Bridge Virtual Interface (BVI) Configuration on Cisco ASR 9000. Fig1. Configuration: RP/0/RSP1/CPU0:ASR9000#configure Configure the interface interface GigE0/0/0/0 description Connection to Server1 eth0 l2transport Configure the l2vpn l2vpn bridge group 1000 bridge-domain 1000 interface GigE0/0/0/0 routed interface BVI1000 3.Configure the Bridge…

Cisco

Interface description is one of the most important configuration when bringing up interfaces between two devices. In a bundle or port-channel interface, there is a way to find the partner interface or which member in that bundle is your interface or port is connected especially if there’s no description or outdated. Here are the steps and commands to find LACP partner interface or port in Cisco Router and Switch Fig1.1 (Cisco IOS-XR)     Assuming we have this Fig1.1, two…

Cisco

Here are the steps on performing the switchover of Route Switch Processor (RSP) or Route Processor (RP) in Cisco ASR9000 platforms running in Cisco IOS-XR. show redundancy Example: RP/0/RSP0/CPU0:IOS-XR#show redundancyRedundancy information for node 0/RSP0/CPU0:==========================================Node 0/RSP0/CPU0 is in ACTIVE roleNode Redundancy Partner (0/RSP1/CPU0) is in STANDBY roleStandby node in 0/RSP1/CPU0 is readyStandby node in 0/RSP1/CPU0 is NSR-not-configuredNode 0/RSP0/CPU0 is in process group PRIMARY roleProcess Redundancy Partner (0/RSP1/CPU0) is in BACKUP roleBackup node in 0/RSP1/CPU0 is readyBackup node in 0/RSP1/CPU0 is NSR-ready…

Cisco