home *** CD-ROM | disk | FTP | other *** search
/ DOS/V Power Report 1999 July / VPR9907B.BIN / DRIVER / IBM / QA7T09W6 / qa7t09w6.exe / EXAMPLES.TXT < prev    next >
Text File  |  1998-01-14  |  2KB  |  65 lines

  1.  
  2. ;- This file gives examples of load and bind statements to 
  3. ;- add to your AUTOEXEC.NCF file to set up Adapter Teaming
  4. ;- on PRO/100+ adapters.
  5.  
  6.  
  7.  
  8. ;- Setting up Adapter Teaming
  9. ;- ==========================
  10.  
  11.  
  12. ;- Copy the load statements below into the appropriate
  13. ;- files and customize them for your server. Parameters for
  14. ;- these statements are defined in your user documentation 
  15. ;- and in the AFT readme files.
  16.  
  17.  
  18.  
  19. ;- Copy the following statement into your AUTOEXEC.NCF file:
  20.  
  21. ;- Load Adapter Fault Tolerance
  22.  
  23. load aft
  24.  
  25.  
  26. ;- Copy the rest of the load statments into your
  27. ;- AUTOEXEC.NCF file, and customize them for your server:
  28.  
  29.  
  30. ;- Load LAN driver on 1st Adapter
  31. load e100b slot=7 frame=ethernet_802.2 name=pri_802.2
  32. load e100b slot=7 frame=ethernet_802.3 name=pri_802.3
  33. load e100b slot=7 frame=ethernet_snap  name=pri_snap
  34. load e100b slot=7 frame=ethernet_ii    name=pri_ii
  35.  
  36. ;- Load LAN driver on 2nd Adapter
  37. load e100b slot=8 frame=ethernet_802.2 name=sec_802.2
  38. load e100b slot=8 frame=ethernet_802.3 name=sec_802.3
  39. load e100b slot=8 frame=ethernet_snap  name=sec_snap
  40. load e100b slot=8 frame=ethernet_ii    name=sec_ii
  41.  
  42.  
  43. ;- Bind ipx to 1st adapter
  44. bind ipx pri_802.2 net=2
  45. bind ipx pri_802.3 net=3
  46. bind ipx pri_snap net=5
  47. bind ipx pri_ii net=11
  48.  
  49.  
  50. ;- Set the 2nd adapter to be an Adapter Fault Tolerance
  51. ;- partner to the first adapter
  52. aft bind 7 8
  53.  
  54.  
  55. ;- Note: No protocols should be bound to the secondary
  56. ;- adapter. All protocol bindings to the primary adapter
  57. ;- will be transferred to the secondary if the primary link
  58. ;- fails.
  59.  
  60.  
  61.  
  62. ;- *********************************************************
  63.  
  64.                                                     ;- v1.01
  65.