-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver3.frr.conf
More file actions
31 lines (26 loc) · 895 Bytes
/
Copy pathserver3.frr.conf
File metadata and controls
31 lines (26 loc) · 895 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
frr defaults traditional
log syslog debugging
ip forwarding
ipv6 forwarding
router bgp <my AS>
bgp log-neighbor-changes
no bgp default ipv4-unicast
no bgp ebgp-requires-policy
no bgp network import-check
bgp graceful-restart
bgp router-id <my host IP address>
neighbor <neighbor IP> remote-as <neighbor AS>
neighbor <neighbor IP> disable-connected-check
neighbor <neighbor IP> update-source ice3
neighbor <neighbor IP> ebgp-multihop 255
neighbor <neighbor IP> timers 30 90
address-family ipv4 unicast
network <my ip range and subnet to announce>
neighbor <neighbor IP> activate
neighbor <neighbor IP> soft-reconfiguration inbound
neighbor <neighbor IP> prefix-list OUT_ONLY out
exit-address-family
address-family ipv6 unicast
exit-address-family
ip prefix-list Deny_All seq 20 deny 0.0.0.0/0
ip prefix-list OUT_ONLY seq 10 permit <my ip range and subnet to announce>