IPConfig.mesa
-- Configuration data for the Mail Gateway.
John Larson, July 2, 1987 5:44:56 pm PDT
DIRECTORY
IPDefs USING [Address],
Rope USING [ROPE];
IPConfig:
CEDAR
DEFINITIONS =
BEGIN
impGatewayName: Rope.ROPE;
specialGateways: LIST OF IPDefs.Address; -- list of special BBN gateways
ourLocalAddress: IPDefs.Address;
rootServers: LIST OF Rope.ROPE; -- list of ARPA domain servers
rootServerAddresses: LIST OF IPDefs.Address; -- list of ARPA domain server addresses
ourLocalName: Rope.ROPE;
topLevelDomains: LIST OF Rope.ROPE;
specialDomains: LIST OF Rope.ROPE;
validDomains: LIST OF Rope.ROPE;
uucpGateway: Rope.ROPE;
csnetGateway: Rope.ROPE;
bitnetGateway: Rope.ROPE;
mailnetGateway: Rope.ROPE;
END.