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

/* Version for MIT-SKIT  */

#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. */

dmitbr
dmittiu
dmitgw2
dmitsw

/* Allocate and init nets and subnets. */
byte pc1[4] = { 18, 9, 0, 0 };
byte eth3[4] = { 18, 2, 0, 0 };
byte e40[4] = { 18, 72, 0, 0 };

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

/* Static routes */
struct ipsrte iprte_sinit[] = {
    pc1, mittiu, 5, 0,
    eth3, mitbr, 2, 0,
    e40, mitsewage, 4, F_SILENT,
    0, 0, 0, 0,
};
