20 lines
262 B
Plaintext
20 lines
262 B
Plaintext
# tags: peer, ipv4, AS_PREFIXES
|
|
router id 192.0.2.1;
|
|
|
|
protocol device {
|
|
}
|
|
|
|
protocol direct {
|
|
ipv4;
|
|
ipv6;
|
|
}
|
|
|
|
protocol bgp peer_v4 {
|
|
local 192.0.2.1 as 65001;
|
|
neighbor 192.0.2.2 as 65002;
|
|
ipv4 {
|
|
import all;
|
|
export all;
|
|
};
|
|
}
|