User Tools

Site Tools


eg-253:networkq:529673

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
eg-253:networkq:529673 [2009/11/26 12:26] antoneg-253:networkq:529673 [2011/01/14 13:00] (current) – external edit 127.0.0.1
Line 6: Line 6:
 |**Name** |Anton Babentsov | |**Name** |Anton Babentsov |
 |**Student Number** |529673 | |**Student Number** |529673 |
-|**Date of Submission** |45th Octember 3330 |   +|**Date of Submission** |10th December 2009 |   
  
 ===== Instructions ===== ===== Instructions =====
Line 267: Line 267:
  
  
 +# /etc/network/options 
 +
 +
 +**Answer**
 # /etc/network/options - for ICCT network # /etc/network/options - for ICCT network
 # set ip_forward=yes if you need to set # set ip_forward=yes if you need to set
Line 274: Line 278:
 spoofprotect=yes spoofprotect=yes
 syncookies=no syncookies=no
- 
- 
-**Answer** 
- 
-  Copy contents of file and paste it as a listing here.  
-  Include a minumum indent of two spaces per line. 
-  Like this.  
      
  
Line 288: Line 285:
  
 **Answer**:  **Answer**: 
 +# Interface in icct-net does the routing,
 +# so needs to know about the rest of the network.
  
-  Copy contents of file and paste it as a listing here.  +  auto eth0 
-  Include a minumum indent of two spaces per line+  iface eth0 inet static 
-  Like this+  address 192.168.1.3 
 +  netmask 255.255.255.0 
 +  gateway 192.168.1.1 # default for jupiter is solaris 
 +  # route to saturn-net 
 +  up   route add -net 192.168.3.0 netmask 255.255.255.0 gw 192.168.1.4 
 +  down route del -net 192.168.3.0 netmask 255.255.255.0 gw 192.168.1.4 
 + 
 + # Interface in jupiter-net is much simpler 
 +  auto eth0 
 +  iface eth1 inet static 
 +  address 192.168.2.1 
 +  netmask 255.255.255.0
  
  
Line 314: Line 324:
 </cli> </cli>
  
-Add your explanation here.+The command "netstat -r" displays  kernal routing table.
  
  
Line 326: Line 336:
  
 # Paste result here.... # Paste result here....
 +Kernel Interface table
 +Iface   MTU Met   RX-OK RX-ERR RX-DRP RX-OVR    TX-OK TX-ERR TX-DRP TX-OVR Flg
 +eth0       1500 0      3615      0      0 2          3024      0      0      0 BMRU
 +lo        16436 0              0      0 0                  0      0      0 LRU
 +
 </cli> </cli>
  
-Add your explanation here.+The command "netstat -i" displays statistic for the network interface,
  
  
Line 366: Line 381:
 **Answer** **Answer**
 <cli prompt="$" comment="#"> <cli prompt="$" comment="#">
-user@host:~$ command +icct@callisto:~$ traceroute -n 192.168.2.2 
-# paste output here+traceroute to 192.168.2.2 (192.168.2.2), 30 hops max, 60 byte packets 
 +  192.168.2.2  0.082 ms  0.013 ms  0.012 ms 
 </cli>   </cli>  
  
Line 379: Line 396:
 **Answer** **Answer**
 <cli prompt="$" comment="#"> <cli prompt="$" comment="#">
-user@host:~$ command +icct@callisto:~$ traceroute -n www.swan.ac.uk 
-# paste output here+traceroute to www.swan.ac.uk (137.44.1.7), 30 hops max, 60 byte packets 
 +  192.168.2.1  0.206 ms  0.194 ms  0.151
 </cli>   </cli>  
  
eg-253/networkq/529673.1259238380.txt.gz · Last modified: 2011/01/14 12:51 (external edit)