User Tools

Site Tools


eg-253:networkq:foxtrot

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
Last revisionBoth sides next revision
eg-253:networkq:foxtrot [2009/04/26 17:27] marameg-253:networkq:foxtrot [2009/05/22 15:48] eechris
Line 4: Line 4:
  
 ^EG-253^Practical Internet Technology II ^ ^EG-253^Practical Internet Technology II ^
-|**Name** |Maram |+|**Name** |Maram and Stephen|
 |**Student Number** |387857 | |**Student Number** |387857 |
 |**Date of Submission** |14th Octember 3330 |    |**Date of Submission** |14th Octember 3330 |   
Line 157: Line 157:
  
 **Answer**:saturn **Answer**:saturn
- 
- 
 ==== Question 11 ==== ==== Question 11 ====
  
Line 174: Line 172:
 Please include a listing of the file chosen in answer to [[#question_11|Question 11]]: Please include a listing of the file chosen in answer to [[#question_11|Question 11]]:
  
- iface lo inet loopback +  iface lo inet loopback 
-auto lo+    auto lo
  
-auto eth0 +  auto eth0 
-iface eth0 inet static +  iface eth0 inet static 
-  address 192.168.3.3 +     address 192.168.3.3 
-  network 192.168.3.0 +     network 192.168.3.0 
-  netmask 255.255.255.0 +     netmask 255.255.255.0 
-  gateway 192.168.3.1+     gateway 192.168.3.1
  
  
-# /etc/hosts -- Hosts file for ICCT Private network +  # /etc/hosts -- Hosts file for ICCT Private network 
-+  
-# IP          FQDN                        aliases +  # IP          FQDN                        aliases 
-+  
-+  
-192.168.1.1 solaris.icct.com solaris inet-gateway +  192.168.1.1 solaris.icct.com solaris inet-gateway 
-192.168.1.2 venus.icct.com venus www +  192.168.1.2 venus.icct.com venus www 
-+  
-# Jupiter cluster +  # Jupiter cluster 
-+  
-192.168.1.3 gw-jupiter.icct.com gw-planets jupiter-if1 +  192.168.1.3 gw-jupiter.icct.com gw-planets jupiter-if1 
-192.168.2.1 jupiter.icct.com jupiter jupiter-if2 +  192.168.2.1 jupiter.icct.com jupiter jupiter-if2 
-192.168.2.2 callisto.jupiter.icct.com callisto +  192.168.2.2 callisto.jupiter.icct.com callisto 
-192.168.2.3 europa.jupiter.icct.com europa +  192.168.2.3 europa.jupiter.icct.com europa 
-192.168.2.4 ganymede.jupiter.icct.com ganumede +  192.168.2.4 ganymede.jupiter.icct.com ganumede 
-+  
-# Saturn cluster +  # Saturn cluster 
-+  
-192.168.1.4 gw-saturn.icct.com gw-saturn saturn-if1 +  192.168.1.4 gw-saturn.icct.com gw-saturn saturn-if1 
-192.168.3.1 saturn.icct.com saturn saturn-if2 +  192.168.3.1 saturn.icct.com saturn saturn-if2 
-192.168.3.2 dione.saturn.icct.com dione +  192.168.3.2 dione.saturn.icct.com dione 
-192.168.3.3 tethys.saturn.icct.com tethys +  192.168.3.3 tethys.saturn.icct.com tethys 
-192.168.3.4 titan.saturn.icct.com titan +  192.168.3.4 titan.saturn.icct.com titan 
-+  
-# Add other hosts/clusters below here +  # Add other hosts/clusters below here 
-# (we'll use this to add virtual hosts to the web-server in a later +  # (we'll use this to add virtual hosts to the web-server in a later 
-# lab exercise)+  # lab exercise)
  
  
  
  
-# The following lines are desirable for IPv6 capable hosts +  # The following lines are desirable for IPv6 capable hosts 
-::1 ip6-localhost ip6-loopback +  ::1 ip6-localhost ip6-loopback 
-fe00::0 ip6-localnet +  fe00::0 ip6-localnet 
-ff00::0 ip6-mcastprefix +  ff00::0 ip6-mcastprefix 
-ff02::1 ip6-allnodes +  ff02::1 ip6-allnodes 
-ff02::2 ip6-allrouters +  ff02::2 ip6-allrouters 
-ff0e2::3 ip6-allhosts+  ff0e2::3 ip6-allhosts
  
  
Line 256: Line 254:
 **Answer** **Answer**
  
-Destination     Gateway         Genmask         Flags Metric Ref    Use Iface +<cli prompt="$" comment="#"> 
-saturn-net      *               255.255.255.0            0        0 eth0 +user@host:~$ route
-link-local      *               255.255.0.0         1000          0 eth0 +
-default         saturn.icct.com 0.0.0.0         UG    100    0        0 eth0+
  
 +  Destination     Gateway         Genmask         Flags Metric Ref    Use Iface
 +  saturn-net      *               255.255.255.0            0        0 eth0
 +  link-local      *               255.255.0.0         1000          0 eth0
 +  default         saturn.icct.com 0.0.0.0         UG    100    0        0 eth0
  
-<cli prompt="$" comment="#"> 
-user@host:~$ command # Copy command and its output and paste it here. 
 </cli> </cli>
  
Line 312: Line 310:
 **Answer**:  **Answer**: 
  
-address 192.168.3.3 + address 192.168.3.3 
-network 192.168.3.0 + network 192.168.3.0 
-netmask 255.255.255.0 + netmask 255.255.255.0 
-gateway 192.168.3.1 + gateway 192.168.3.1 
-# route to saturn-net + # route to saturn-net 
-up route add -net 192.168.3.0 netmask 255.255.255.0 gw 192.168.1.3 + up route add -net 192.168.3.0 netmask 255.255.255.0 gw 192.168.1.3 
-down route del -net 192.168.3.0 netmask 255.255.255.0 gw 192.168.1.3+ down route del -net 192.168.3.0 netmask 255.255.255.0 gw 192.168.1.3
  
 ===== Checking Your Network ===== ===== Checking Your Network =====
eg-253/networkq/foxtrot.txt · Last modified: 2011/01/14 13:00 by 127.0.0.1