/* Copyright 1984 by the Massachusetts Institute of Technology */
/* This file contains IN routing table initialization.
 */

/* Version for MIT Telecom spine gateways (special version for B11GW) */

#include	<types.h>
#include	<sys.h>
#include	<gw/src/defs.h>
#include	<gw/src/net.h>
#include	<gw/in/in.h>
#include	<gw/in/inrte.h>

#include	"../inga.h"
#include	"../mit-inga.h"

/* Allocate and init storage for gateway names using defs in inga.h. */
dmitw91
byte kbox9[4] = { 18, 80, 0, 62 };
byte kbox10[4] = { 18, 80, 0, 63 };

/* Allocate and init nets and subnets. */
byte apnet9[4] = { 18, 137, 0, 0 };
byte apnet10[4] = { 18, 138, 0, 0 };

/* Default Gateway */
byte *defgw = { w91gw };

/* Static routes */
struct ipsrte iprte_sinit[] = {
    apnet9, kbox9, 1, 0,
/* removed 07/31/87 ... this subnet now in b54 ...
    apnet10, kbox10, 1, 0, */
    0, 0, 0, 0,
};

