Last active
December 28, 2015 04:49
-
-
Save jianingy/7445318 to your computer and use it in GitHub Desktop.
quagga rip example
This file contains 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
! | |
key chain primary | |
key 1 | |
key-string secret | |
hostname a1.example.com | |
interface tap-obfs1 | |
ip rip authentication mode md5 | |
ip rip authentication key-chain primary | |
interface ppp0 | |
ip rip authentication mode md5 | |
ip rip authentication key-chain primary | |
interface ppp1 | |
ip rip authentication mode md5 | |
ip rip authentication key-chain primary | |
interface ppp2 | |
ip rip authentication mode md5 | |
ip rip authentication key-chain primary | |
interface ppp3 | |
ip rip authentication mode md5 | |
ip rip authentication key-chain primary | |
router rip | |
network tap-obfs1 | |
neighbor 172.24.232.102 | |
redistribute connected | |
distribute-list private-in in tap-obfs1 | |
distribute-list private-out out tap-obfs1 | |
access-list private-in deny 10.50.0.0/16 | |
access-list private-in permit any | |
access-list private-out permit 10.96.0.0/16 | |
access-list private-out permit 172.24.232.0/24 | |
access-list private-out deny any | |
line vty | |
log syslog | |
log facility local7 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment