File: second.template

package info (click to toggle)
exabgp 4.2.25-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 9,612 kB
  • sloc: python: 37,482; sh: 581; perl: 31; makefile: 23
file content (27 lines) | stat: -rw-r--r-- 382 bytes parent folder | download | duplicates (4)
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
#route 77.93.35.15/32 next-hop 10.0.0.2;

template test {
	local-as 65533;
	peer-as 65533;
	hold-time 180;

	capability {
		route-refresh;
		graceful-restart 1200;
	}

	family {
		ipv4 unicast;
	}

	static {
		route 1.0.0.0/24 next-hop 9.9.9.9 split /25;
	}
}

neighbor 127.0.0.1 {
	inherit test;
	description "router 2 with four routes";
	router-id 128.0.0.0;
	local-address IP;
}