Home > IT Notes

TCPIP Routing on Netware 3.11

  • In the Netware 3.11 Server SYSTEM directory:
    • Replace TCPIP.NLM with version date 23/01/96 size 358,306 bytes
      Archive NIP22B.EXE, \DHCP\DHCPSRVR\UTILS\TCPIP.NLM
    • Replace SNMP.NLM with version date 03/01/96 size 90,428 bytes
      Archive NIP22B.EXE, \DHCP\DHCPSRVR\UTILS\SNMP.NLM
    • Add CSLSTUB.NLM date 21/11/94 size 3,122 bytes
      Archive NIP22B.EXE, \DHCP\DHCPSRVR\UTILS\CSLSTUB.NLM
    • Add A3112.NLM date 10/10/95 size 16,268 bytes
      Archive LIB311B.EXE, \A3112.NLM
    • Add AFTER311.NLM date 10/10/95 size 14,952 bytes
      Archive LIB311B.EXE, \AFTER311.NLM

  • In AUTOEXEC.NCF (or a .NCF file called from AUTOEXEC.NCF)
    • Load the LAN Driver with the Ethernet_II frame type for each LAN card on an IP segment
      Syntax: load [lan_driver] slot=x frame=ethernet_ii name=[network name]
      EG: load E100B slot=9 frame=ethernet_ii name=backboneip
    • Load TCPIP with IP forwarding enabled
      load TCPIP forward=yes
    • Bind IP to each LAN card with the Ethernet_II frame type loaded
      Syntax: bind IP to [network name] addr=[IP Address] mask=[Netmask]
      EG: bind ip to sth_winip addr=10.0.11.1 mask=ff.ff.ff.0
    • NB Add a gate=[IP Address] clause to the bind command on the network card connected to the network with the default gateway.
      EG: bind ip to backboneip addr=10.0.0.53 mask=ff.ff.ff.0 gate=10.0.0.32

  • Example TCPIP.NCF file from JNR
    load e100b slot=9 frame=ethernet_ii name=backboneip
    load e100b slot=10 frame=ethernet_ii name=sth_wingip
    load e100b slot=11 frame=ethernet_ii name=nth_wingip
    load tcpip forward=yes
    bind ip to backboneip addr=10.0.0.53 mask=ff.ff.ff.0 gate=10.0.0.32
    bind ip to sth_wingip addr=10.0.11.1 mask=ff.ff.ff.0
    bind ip to nth_wingip addr=10.0.10.1 mask=ff.ff.ff.0
    
Home > IT Notes