Created
April 20, 2015 01:48
-
-
Save NekoTashi/d35ec876fb4aa39387aa to your computer and use it in GitHub Desktop.
N1WAN.docx - Correo - Certamen 1 - Nicolas Montero - OSPF - Frame Relay - Auth
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ! -------------Frame Relay------------- | |
| ! R1 | |
| int loopback 0 | |
| ip add 1.1.1.1 255.255.255.0 | |
| no shut | |
| int s0/0/0 | |
| enc frame | |
| no shut | |
| int s0/0/0.12 point-to-point | |
| ip add 10.1.12.1 255.255.255.0 | |
| frame-relay interface-dlci 102 | |
| int s0/0/0.13 point-to-point | |
| ip add 10.1.13.1 255.255.255.0 | |
| frame-relay interface-dlci 103 | |
| int s0/0/0.14 point-to-point | |
| ip add 10.1.14.1 255.255.255.0 | |
| frame-relay interface-dlci 104 | |
| ! R2 | |
| int loopback 0 | |
| ip add 2.2.2.2 255.255.255.0 | |
| no shut | |
| int s0/0/0 | |
| enc frame | |
| no shut | |
| int s0/0/0.21 point-to-point | |
| ip add 10.1.12.2 255.255.255.0 | |
| frame-relay interface-dlci 201 | |
| ! R3 | |
| int loopback 0 | |
| ip add 3.3.3.3 255.255.255.0 | |
| no shut | |
| int s0/0/0 | |
| enc frame | |
| no shut | |
| int s0/0/0.31 point-to-point | |
| ip add 10.1.13.3 255.255.255.0 | |
| frame-relay interface-dlci 301 | |
| ! R4 | |
| int loopback 0 | |
| ip add 4.4.4.4 255.255.255.0 | |
| no shut | |
| int s0/0/0 | |
| enc frame | |
| no shut | |
| int s0/0/0.41 point-to-point | |
| ip add 10.1.14.4 255.255.255.0 | |
| frame-relay interface-dlci 401 | |
| ! -------------OSPF Config------------- | |
| ! R1 | |
| router ospf 1 | |
| network 10.1.12.1 0.0.0.255 area 0 | |
| network 10.1.13.1 0.0.0.255 area 0 | |
| network 10.1.14.1 0.0.0.255 area 0 | |
| end | |
| ! R2 | |
| router ospf 1 | |
| network 10.1.12.2 0.0.0.255 area 0 | |
| end | |
| ! R3 | |
| router ospf 1 | |
| network 10.1.13.3 0.0.0.255 area 0 | |
| end | |
| ! R4 | |
| router ospf 1 | |
| network 10.1.14.4 0.0.0.255 area 0 | |
| end | |
| ! -----Config Authentication Simple----- | |
| ! R1 | |
| int s0/0/0.12 point-to-point | |
| ip ospf authentication | |
| ip ospf authentication-key cisco | |
| ! R2 | |
| int s0/0/0.21 point-to-point | |
| ip ospf authentication | |
| ip ospf authentication-key cisco |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment