View Single Post
  #7   (View Single Post)  
Old 17th June 2008
xiphias xiphias is offline
Port Guard
 
Join Date: May 2008
Posts: 31
Default

I thought exactly the same when I first saw it. However the ip address of the internal port of the router is 192.168.1.1. Setting this as the default route won't work either because the it is on a different subnet to 123.123.123.209/32

The output you asked for, the mac address is that of the modem. This isn't the entire listing, but I've picked out the important ones as long with enough of a sample to see what is happening (hopefully).
Code:
4.71.209.5         00:11:95:b7:e7:81  UHLW        1        8    xl0    153
24.2.31.194        00:11:95:b7:e7:81  UHLW        1        1    xl0    136
24.22.185.116      00:11:95:b7:e7:81  UHLW        1        2    xl0    993
24.77.66.163       00:11:95:b7:e7:81  UHLW        1        1    xl0    748
24.138.26.80       00:11:95:b7:e7:81  UHLW        1        3    xl0   1193
24.192.16.123      00:11:95:b7:e7:81  UHLW        1        1    xl0    140
24.213.60.79       00:11:95:b7:e7:81  UHLW        1        2    xl0    555
24.247.24.38       00:11:95:b7:e7:81  UHLW        1        1    xl0    556
59.3.123.70        00:11:95:b7:e7:81  UHLW        1        1    xl0    508
60.240.51.91       00:11:95:b7:e7:81  UHLW        1        1    xl0    734
61.134.47.190      00:11:95:b7:e7:81  UHLW        1        1    xl0    911
63.203.10.250      00:11:95:b7:e7:81  UHLW        1        2    xl0    468
63.245.208.161     00:11:95:b7:e7:81  UHLW        1        2    xl0    606
63.245.209.10      00:11:95:b7:e7:81  UHLW        1       18    xl0    611
63.245.209.24      00:11:95:b7:e7:81  UHLW        1       10    xl0    607
63.245.209.101     00:11:95:b7:e7:81  UHLW        1        2    xl0    615
63.245.212.22      00:11:95:b7:e7:81  UHLW        1        1    xl0    610
63.245.213.33      00:11:95:b7:e7:81  UHLW        1      526    xl0    620
63.245.213.101     00:11:95:b7:e7:81  UHLW        1        3    xl0    611
63.245.223.10      00:11:95:b7:e7:81  UHLW        1        3    xl0    610
63.251.83.72       00:11:95:b7:e7:81  UHLW        1        8    xl0    567
63.251.83.82       00:11:95:b7:e7:81  UHLW        1        8    xl0    553
64.13.141.6        00:11:95:b7:e7:81  UHLW        1        2    xl0    606
64.34.197.141      00:11:95:b7:e7:81  UHLW        1        1    xl0    554
.....
123.123.123.209/32    link#4             UC          0        0    xl0
123.123.123.210/32    link#4             UC          0        0    xl0
127.0.0.1          127.0.0.1          UH          0        0    lo0
192.168.10.0/24    link#2             UC          0        0    vr0
192.168.11.0/24    link#3             UC          0        0    vr1
192.168.12.0/24    link#1             UC          0        0   ath0
dhclient.conf looks like:
Code:
interface "xl0" {
	prepend domain-name "localnet";
	supersede domain-name-servers 192.168.10.2;
}

alias {
	interface "xl0";
	fixed-address 123.123.123.210;
	option subnet-mask 255.255.255.255;
}
Just to be clear my modem is a DLink 300T and the connection is pppoa
Reply With Quote