Broadband & Warp: Difference between revisions

From OS2World.Com Wiki
Jump to navigation Jump to search
Created page with "By Dave Saville - D Z Consulting Getting Connected Box type Cable type Hubs, Routers & Firewalls Getting Registered MAC Addresses Browser Rest..."
 
No edit summary
 
(4 intermediate revisions by the same user not shown)
Line 1: Line 1:
By [[Dave Saville]] - D Z Consulting
{{Article
 
|Author=[[David Saville]] / D Z Consulting
Getting Connected
|Date=
|OS=OS/2 Warp 3
|File=
|Source=
}}
==Getting Connected==


     Box type
     Box type
Line 7: Line 12:
     Hubs, Routers & Firewalls  
     Hubs, Routers & Firewalls  


Getting Registered
==Getting Registered==


     MAC Addresses
     MAC Addresses
Line 13: Line 18:
     Restarting  
     Restarting  


Addressing
==Addressing==


     Local LAN
     Local LAN
Line 23: Line 28:
     NAT  
     NAT  


DNS
==DNS==


     Manually
     Manually
Line 34: Line 39:
         All boxes except the firewall have resolv2 pointed at the firewall box.  
         All boxes except the firewall have resolv2 pointed at the firewall box.  


Routing - x:\mptn\bin\setup.cmd
==Routing - x:\mptn\bin\setup.cmd==


     Firewall 192.168.0.1
     Firewall 192.168.0.1
Line 59: Line 64:




Network Example
==Network Example==
 
 
==dhcpcd.cfg==
 
 
option 1                                # Subnet Mask
option 3                                # Router
option 6 exec "c:\bin\dnsupdate.cmd %s"  # Domain Name Server
option 15                                # Domain Name
option 28                                # Broadcast Address
option 33                                # Static Routes
option 60 "IBMWARP_V3.1"                # Vendor Class
option 77 "IBMWARP_V3.1"                # User Class
 
 




[[Category:Network Articles]]
[[Category:Network]]

Latest revision as of 16:09, 22 December 2024

Article Info
Author David Saville / D Z Consulting
Date
OS Version OS/2 Warp 3
Companion File
Source

Getting Connected

   Box type
   Cable type
   Hubs, Routers & Firewalls 

Getting Registered

   MAC Addresses
   Browser
   Restarting 

Addressing

   Local LAN
   "Private" ranges
       10.0.0.x
       172.16.x.x
       192.168.x.x 
   Otherwise.........
   NAT 

DNS

   Manually
       Need to know when DNS server(s) changed
       Need to update all boxes on LAN
       ETC\resolv2 points to ISPs DNS Servers 
   Automatically
       Need to run Bind on the firewall
       Need to hack dhcpcd.cfg located in ETC
       All boxes except the firewall have resolv2 pointed at the firewall box. 

Routing - x:\mptn\bin\setup.cmd

   Firewall 192.168.0.1
   route -fh
   arp -f
   ifconfig lo 127.0.0.1
   ifconfig lan0 192.168.0.1 netmask 255.255.255.0
   dhcpstrt -i lan1
   route add net 192.168.0 192.168.0.2 1 netmask 255.255.255.0
   ipgate on
   	
   A N Other Warp PC 192.168.0.2
   route -fh
   arp -f
   ifconfig lo 127.0.0.1
   ifconfig lan0 192.168.0.2 netmask 255.255.255.0
   ifconfig lan0 192.168.1.2 netmask 255.255.255.0 alias
   route add default 192.168.0.1 1
   ipgate on
   	


Network Example

dhcpcd.cfg

option 1                                 # Subnet Mask
option 3                                 # Router
option 6 exec "c:\bin\dnsupdate.cmd %s"  # Domain Name Server
option 15                                # Domain Name
option 28                                # Broadcast Address
option 33                                # Static Routes
option 60 "IBMWARP_V3.1"                 # Vendor Class
option 77 "IBMWARP_V3.1"                 # User Class