BSD 4_3_Net_1 development
[unix-history] / egp / egp.conf
CommitLineData
9845bca7
C
1# egp.conf
2#
3# EGP User Process, ISI 23-Jun-84
4#
5# Initialization file for EGP user process, "egpup".
6# The information in the file is identified by the keywords which commence
7# at the start of a new line. Any text to the right of a # is a comment.
8# To change initialization info after egpup is running, kill the process
9# (which will initiate the correct cease message exchange) and restart it.
10# The keywords and data formats are as follows:
11# (keywords are underlined)
12#
13# autonomoussystem value1
14# ----------------
15# egpneighbor name1
16# -----------
17# egpmaxacquire value2
18# -------------
19# net name2 gateway name3 metric value3
20# --- ------- ------
21# egpnetsreachable name4 name4 ... name4
22# ----------------
23# defaultgateway name5
24# --------------
25#
26# where:
27# - names are either symbolic as located in /etc/hosts or /etc/networks or
28# internet addresses in dot notation a.b.c.d
29#
30# autonomoussystem value1
31# ----------------
32# - value1 is the gateway autonomous system number
33#
34# egpneighbor name1
35# -----------
36# - name1 is an EGP neighbor gateway. Normally all neighbors must be on the
37# same net.
38#
39# egpmaxacquire value2
40# -------------
41# - value2 is the maximum number of direct EGP neighbors to be acquired.
42#
43# net name2 gateway name3 metric value3
44# --- ------- ------
45# - name2 is a net reachable via a gateway name3 at
46# distance value3 hops from the gateway. Used to initialize internal
47# routing tables with (a) routes to be advertised, thus typically
48# listing this gateway as the gateway to use, and (b) routes known
49# from other sources, to prevent EGP from installing exterior routes
50# when better interior routes exist. Routes listed here are *not*
51# installed in the kernel.
52#
53# egpnetsreachable name4 name4 ... name4
54# ----------------
55# - name4 is a net whose reachability is to be made public in EGP Network
56# Reachability messages. If any net is declared in such a statement, all
57# nets that are not so declared will be excluded from NR messages. If
58# this keyword is absent, the nets to be advised will be direct nets and
59# nets via non-routing gateways. THIS ENTRY SHOULD ALWAYS BE PRESENT.
60#
61# defaultgateway name5
62# --------------
63# - name5 is a default gateway. The default is installed at start-up, and when
64# no neighbors are acquired and the routes are too old. It is deleted
65# after an EGP NR message is received. It is reinstalled prior to process
66# termination. SHOULD NOT BE USED if the EGP gateway is listed as a
67# default gateway by routed.
68#
69
70autonomoussystem 25 # berkeley
71
72egpmaxacquire 2
73
74egpneighbor 10.3.0.27 # isi-gateway
75egpneighbor 10.2.0.2 # sri-csl-gw
76egpneighbor 10.2.0.37 # purdue-cs-gateway
77
78net 192.5.49.0 gateway 10.0.0.78 metric 1 # ucsf from arpanet perspective
79net 128.45.0.0 gateway 128.32.0.10 metric 2 # ignore dec-wrl exterior rt.
80
81egpnetsreachable 192.5.49.0 128.32.0.0
82
83#defaultgateway 10.0.0.68 # lbl-milnet-gateway; not used.