Project

General

Profile

Bug #11835 » firewall1 frr config.txt

Gavin Owen, 04/22/2021 02:06 AM

 
1
[2.5.1-RELEASE][root@firewall1.home.arpa]/root: vtysh
2

    
3
Hello, this is FRRouting (version 7.5).
4
Copyright 1996-2005 Kunihiro Ishiguro, et al.
5

    
6
firewall1.home.arpa# show running-config no-header 
7
frr version 7.5
8
frr defaults traditional
9
hostname firewall1.home.arpa
10
service integrated-vtysh-config
11
!
12
password LAB
13
!
14
ip router-id 192.168.1.1
15
!
16
interface em1
17
 description "ospfd: LAN_passive"
18
 ip ospf area 0.0.0.0
19
 ip ospf cost 4
20
 ip ospf priority 0
21
!
22
interface ovpns2
23
 description "ospfd: LAN_passive - ospfd: TUNNEL1_active"
24
 ip ospf area 0.0.0.0
25
 ip ospf authentication message-digest
26
 ip ospf cost 8000
27
 ip ospf message-digest-key 1 md5 BAAAAAAAAAAAAAAD
28
!
29
interface ovpns3
30
 description "ospfd: LAN_passive - ospfd: TUNNEL1_active - ospfd: TUNNEL2_active"
31
 ip ospf area 0.0.0.0
32
 ip ospf authentication message-digest
33
 ip ospf cost 9000
34
 ip ospf message-digest-key 1 md5 BAAAAAAAAAAAAAAD
35
!
36
router ospf
37
 ospf router-id 192.168.1.1
38
 auto-cost reference-bandwidth 400000
39
 redistribute connected metric 20 route-map CONNECT
40
 passive-interface em1
41
 area 0.0.0.0 authentication message-digest
42
!
43
ip prefix-list CONNECT seq 10 permit 10.1.194.0/24
44
!
45
route-map CONNECT permit 10
46
 match ip address prefix-list CONNECT
47
!
48
line vty
49
!
50
end
51
firewall1.home.arpa# 
(3-3/9)