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

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

/*
 *------------------------------------------------------------------
 *
 * $Source: /u1/jis/gw/cgw/conf/spine/RCS/inga.b38gw.c,v $
 * $Revision: 1.5 $
 * $Date: 89/09/09 14:35:32 $
 * $State: Exp $
 * $Author: jon $
 * $Locker:  $
 *
 * $Log:	inga.b38gw.c,v $
 * Revision 1.5  89/09/09  14:35:32  jon
 * default gateway to w91gw
 * ,
 * 
 * Revision 1.4  89/01/15  19:57:56  jon
 * remove static route to 18.27 as that net has moved to NE43
 * 
 * Revision 1.3  88/10/04  16:18:06  jon
 * Add static route to ee apollo net (18.144) via jules-verne.mit.edu
 * (18.62.0.13)
 * 
 * Revision 1.2  88/08/23  16:35:35  jon
 * Change 18.27 route to go through 18.62.0.21 not 18.62.0.232 (caf) per Dave
 * Foss's request.
 * 
 *------------------------------------------------------------------
 */

#ifndef lint
static char *rcsid_inga_b38gw_c = "$Header: inga.b38gw.c,v 1.5 89/09/09 14:35:32 jon Exp $";
#endif	lint

#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 caf[4] = { 18, 62, 0, 232 };
byte yosemite_sam[4] = {18, 62, 0, 21};
byte jules_verne[4] = {18, 62, 0, 13};

/* Allocate and init nets and subnets. */
byte chaossub[4] = { 18, 20, 0, 0 };
byte ee_apollo_net[4] = {18, 144, 0, 0};

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

/* Static routes */
struct ipsrte iprte_sinit[] = {
    chaossub, caf, 1, 0,
    ee_apollo_net, jules_verne, 1, 0,
    0, 0, 0, 0,
};
