Posts

Configuration RIP Protocol on HP Comware Routers!

Image
Configuration RIP Protocol on HP Comware Routers. R1: #  sysname MSR36-20-R1 # rip 1  undo summary  version 2  network 172.16.1.0 0.0.0.255  network 192.168.1.0  network 1.1.1.1 0.0.0.0 # # interface Serial1/0  ip address 172.16.1.1 255.255.255.0 # interface Serial2/0  ip address 192.168.1.1 255.255.255.0 # # interface LoopBack0  ip address 1.1.1.1 255.255.255.255 # R2: #  sysname MSR36-20-R2 # rip 1  undo summary  version 2  network 172.16.1.0 0.0.0.255  network 172.24.77.0 0.0.0.255  network 2.2.2.2 0.0.0.0 # # interface Serial1/0  ip address 172.16.1.2 255.255.255.0 # interface Serial2/0  ip address 172.24.77.2 255.255.255.0 # # interface LoopBack0  ip address 2.2.2.2 255.255.255.255 # R3: #  sysname MSR36-20-R3 # rip 1  undo summary  version 2  network 192.168.1.0  networ...

Configuration OSPF Protocol on Huawei Routers!

Image
Configuration OSPF  Protocol on Huawei Routers Your tasks are: 1- Set an IP address on each Router as shown in the graph. 2- Ping from Router to Router on the peer interface's IP address. 3- Configure OSPF on all routers assuming that all are in the same backbone area (area 0). 4- Test if any router can reach any loopback interface using ping command. 5- Use "display" command to see the ospf peers and the routing table. 6- Who is the DR between AR1 and AR2? 7- If AR1 is the DR, make the change needed so it becomes the BDR and AR2 becomes the DR (same apply for the way around). Configure OSPF on all routers assuming that all are in the same backbone area (area0).  Test if any router can reach any loopback interface using ping command. Who is the DR between AR1 and AR2? If AR1 is the DR, make the change needed so it becomes the BDR and AR2 becomes the DR (same apply for the way around). -----...

Configuration RIP Protocol on Huawei Routers!

Image
Configuration RIP Protocol on Huawei Routers Topology: Configure IP address on all interfaces: and so on all interfaces Configure RIP on R1: Configure RIP on R2: Configure RIP on R3: Display routing table: Test: ------------------------------------- Good Luck https://www.linkedin.com/in/ahmedms/

First Method: How to install IBM WebSphere AS on Docker ?

Image
How to install IBM WebSphere AS on Docker  *  Pull WAS-Application Server latest  image: * Create container name WAS-AS: docker run --name WAS-AS -h WAS -e HOST_NAME=localhost -p 9043:9043 -p 9443:9443 -d \ -e PROFILE_NAME=AppSrv01 -e CELL_NAME=DefaultCell01 -e NODE_NAME=DefaultNode01 \ ibmcom/websphere-traditional:install Username & Password Username : wsadmin Password : [root@docker ~]# docker exec WAS-AS cat /tmp/PASSWORD 1AAG3TS2 WebSphere Console: Good Luck https://www.linkedin.com/in/ahmedms/

How to configure OSPF on Palo Alto Networks Firewall?

Image
How to configure OSPF on Palo Alto Networks Firewall !! Steps: 1- Create Virtual Router. 2- Create three Zones (Site A – Site B – Site C). 3- Create security rule allow (ping) between Site A & Site C. 4- Create OSPF routing protocol on two firewalls. -------------------------------------------------------------------------------------------                                                                     PaloAlto - 1 1- Create Virtual Router (VR-1) PaloAlto-1 2- Create Zones PaloAlto-1: 3- Assign Interfaces PaloAlto-1: 4- Create rule allow (ping) and deny other 5- Apply OSPF between two interfaces (eth ½ - eth 1/1) Show routing table on Palo-Alto-1: ====================================================================      ...

How to understand MPLS protocol by example !!!

Image
How to understand MPLS protocol by example? 1- Using OSPF as routing protocol. 2- Apply MPLS LDP protocol. ------------------------------------------------------------ (R1): mpls label range 100 199 mpls label protocol ldp multilink bundle-name authenticated ! ! interface Loopback0  ip address 1.1.1.1 255.255.255.0 ! interface FastEthernet0/0  ip address 12.1.1.1 255.255.255.0  duplex full  mpls ip ! router ospf 1  network 1.1.1.0 0.0.0.255 area 0  network 12.1.1.0 0.0.0.255 area 0 ! mpls ldp router-id Loopback0 ! end ------------------------------------ (R2) mpls label range 200 299 mpls label protocol ldp multilink bundle-name authenticated ! interface Loopback0  ip address 2.2.2.2 255.255.255.0 ! interface FastEthernet0/0  ip address 12.1.1.2 255.255.255.0  speed auto  duplex auto  mpls ip ! interface FastEthernet0/1  ip address 23.1.1.2 255.255.255.0 ...

How to Configuration MPLS L2 VPN between two branches !!!

Image
How to Configuration MPLS L2 VPN  between two branches: encapsulation L2 of two branches into L3 MPLS by VC & pseudo wire. How to: 1-  R2(f0/0) not assign IP   R5(f0/1) no assign IP. 2- Apply routing protocol RIP v2 on R1 & R6 . 3- Apply  OSPF on R2-R3-R4-R5, but R2 (23.0.0.0 & 2.2.2.2) no route with 16.0.0.0  and    R6 the same. 4-  Company has two branches (16.0.0.1  -   16.0.0.6) 5-  MPLS not need know network of customers into PE & P each customer so not route network into core. ----------------------------------------------------- How to Configuration routing protocol and MPLS: R1: en conf t interface f0/0 no shutdown ip address 16.0.0.1 255.0.0.0 interface loopback 0 ip address 1.1.1.1 255.255.255.255 router rip network 16.0.0.0   network 1.0.0.0    version 2 no auto-summary end wr me -------------------...