Re: Latency problem with traffic shaping (ipfw/dummynet)

2004-03-21 Thread Vincent Poy
On Sun, 21 Mar 2004, Luigi Rizzo wrote:

 On Sat, Mar 20, 2004 at 12:56:08PM -1000, Vincent Poy wrote:
 ...
   the above configuration means that if queue 1 is getting a bandwidth
   X, then queue 2 will get 0.99X, queue 3 will get 0.98X, queue
   4 will get 0.97X. Hardly matching any reasonable definition of high-mid-low
   priority!
 
  Hmm, I think I did it that way because 100 is the largest number
  and I didn't decide on how many queues I may add later so the numbers will
  change but does the weight number really mean 99%, 98%, 97% priority?  So
  should it really be 66, 33, and 1?

 no, the weights mean exactly what i wrote above, and they
 are weights not priorities. As to the values to use,
 that's entirely up to you.

Just as I thought.  I rebooted and latencies have gone down.  It
seems that latency when the pipes are filled are always 50-100ms slower on
boxes behind the FreeBSD box.  One question though, with ipfw pipe show or
ipfw queue show, is it supposed to show all traffic that matches the queue
rule or just only one?


Cheers,
Vince - [EMAIL PROTECTED] - Vice President    __ 
Unix Networking Operations - FreeBSD-Real Unix for Free / / / / |  / |[__  ]
WurldLink Corporation  / / / /  | /  | __] ]
San Francisco - Honolulu - Hong Kong  / / / / / |/ / | __] ]
HongKong Stars/Gravis UltraSound Mailing Lists Admin /_/_/_/_/|___/|_|[]
[EMAIL PROTECTED] - oahu.DAL.NET Hawaii's DALnet IRC Network Server Admin

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Latency problem with traffic shaping (ipfw/dummynet)

2004-03-20 Thread Vincent Poy
On this subject, I have one of my own...  I have a
6.016Mbps/608kbps ADSL connection with 8 static IP's from my ISP.  I'm
using the FreeBSD box to basically limit my upstream bandwidth to 480kbps
so that the downloads would work while uploading.  In my kernel, I do have
the following options:

options IPFIREWALL  #firewall
options IPDIVERT#divert sockets
options DUMMYNET
options BRIDGE
options HZ=1000
options NMBCLUSTERS=65536

The 8 IP's I'm using is 208.204.244.224-231 on a /24 block with
the gateway on the other side at my ISP being 208.204.244.1.  The FreeBSD
machine is 208.204.244.224 and I do have gateway ip forwarding enabled. My
problem is that while as far as speeds are concerned, it's working
correctly on both the .224 (FreeBSD box) as well as the .225-.231 boxes
behind it.  The issue is that tracerouting from any box other than the
FreeBSD box shows latencies of 1000+ms after the FreeBSD router beginning
with hop 2 when the upstream pipe is being used while the FreeBSD box
shows the latency at 40-50ms which is correct under traffic load.  Anyone
knows what's causing this or is this the way it's supposed to work?  All
the machines are pointing to .224 (FreeBSD box) as the gateway.  All local
traffic doesn't go through dummynet's queues.  This is how I have ipfw
configured.

setup_loopback
# Traffic Shaping for DSL connection 6.016Mbps/608Kbps
# Make packets exiting dummynet not continue down the chain
# If this is not enabled, then packets leaving an early
# queue might enter a later queue if the conditions for
# the later queue are met, which would be completely
# devastating to all the prioritizing we're doing
${fwcmd} enable one_pass
# Add rules so that local routable IP LAN traffic does not use natd
${fwcmd} add 39 divert natd all from 10.0.0.0/8 to any via ${natd_interface}
${fwcmd} add 40 divert natd all from 172.16.0.0/12 to any via ${natd_interface}
${fwcmd} add 41 divert natd all from 192.168.0.0/16 to any via 
${natd_interface}
${fwcmd} add 42 divert natd all from 208.201.244.224/29 to 10.0.0.0/8 via 
${natd_interface}
${fwcmd} add 43 divert natd all from 208.201.244.224/29 to 172.16.0.0/12 via 
${natd_interface}
${fwcmd} add 44 divert natd all from 208.201.244.224/29 to 192.168.0.0/16 via 
${natd_interface}
${fwcmd} add 45 divert natd all from any to 10.0.0.0/8 via ${natd_interface}
${fwcmd} add 46 divert natd all from any to 172.16.0.0/12 via ${natd_interface}
${fwcmd} add 47 divert natd all from any to 192.168.0.0/16 via 
${natd_interface}
${fwcmd} add 48 divert natd all from any to 208.201.244.224/29 via 
${natd_interface}
${fwcmd} add 49 skipto 100 ip from 208.201.244.224/29 to any
${fwcmd} add 50 divert natd all from any to any via ${natd_interface}
${fwcmd} add 100 pass all from any to any via lo0
${fwcmd} add 200 deny all from any to 127.0.0.0/8
${fwcmd} add 300 deny ip from 127.0.0.0/8 to any
# Route LAN and RFC1918 networks without Traffic Shaping
${fwcmd} add 63000 allow all from any to 10.0.0.0/8 out
${fwcmd} add 63001 allow all from any to 172.16.0.0/12 out
${fwcmd} add 63002 allow all from any to 192.168.0.0/16 out
${fwcmd} add 63003 allow all from any to 208.201.244.224/29 out
# Define our upload pipe
${fwcmd} pipe 1 config bw 480Kbit/s
# Define a high-priority queue
${fwcmd} queue 1 config pipe 1 weight 100
# Define a medium-high-priority queue
${fwcmd} queue 2 config pipe 1 weight 99
# Define a medium-low-priority queue
${fwcmd} queue 3 config pipe 1 weight 98
# Define a low-priority queue
${fwcmd} queue 4 config pipe 1 weight 97
# Assign outgoing empty/small ACK packets to the high-priority queue
${fwcmd} add 63004 set 0 queue 1 tcp from any to any tcpflags ack iplen 0-80 
out
# Assign outgoing UDP (DNS/gaming) and SSH traffic to the medium-high-priority queue
${fwcmd} add 63005 set 0 queue 2 tcp from any to any 22,23 out
${fwcmd} add 63006 set 0 queue 2 udp from any to any not 80,443 out
# Assign outgoing HTTP/HTTPS WEB traffic to the medium-low-priority queue
${fwcmd} add 63007 set 0 queue 3 all from any to any 80,443 out
# Assign all other outgoing traffic to the low-priority queue
${fwcmd} add 63008 set 0 queue 4 all from any to any out
# End of Traffic Shaping
${fwcmd} add 65000 pass all from any to any

This is what the latencies look like on the machines behind the
FreeBSD router when there is a upload:

Tracing route to wurldlink.net [66.193.144.22]
over a maximum of 30 hops:

  11 ms1 ms1 ms  adsl-208-201-244-224.sonic.net [208.201.244.224]
  2   915 ms   933 ms  1025 ms  adsl-208-201-244-1.sonic.net [208.201.244.1]
  3  1082 ms  1015 ms  1089 ms  fast1-0-0.border.sr.sonic.net [208.201.224.194]
  4 

Re: Latency problem with traffic shaping (ipfw/dummynet)

2004-03-20 Thread Vincent Poy
On Sat, 20 Mar 2004, Luigi Rizzo wrote:

 cannot comment on the reason for the huge delay (but one
 way to check what is going on is to change the pipe's bandwidth
 and see if anything changes), but i see a big
 misunderstanding on weights vs. priorities in your
 configuration:

The delay only seems to be coming from machines behind the FreeBSD
box and not the FreeBSD box itself since every box has static IP's, only
the outgoing is via the FreeBSD box but the downstream is direct from the
modem through the switch and then the machines directly.

  # Define our upload pipe
  ${fwcmd} pipe 1 config bw 480Kbit/s
  # Define a high-priority queue
  ${fwcmd} queue 1 config pipe 1 weight 100
  # Define a medium-high-priority queue
  ${fwcmd} queue 2 config pipe 1 weight 99
  # Define a medium-low-priority queue
  ${fwcmd} queue 3 config pipe 1 weight 98
  # Define a low-priority queue
  ${fwcmd} queue 4 config pipe 1 weight 97

 the above configuration means that if queue 1 is getting a bandwidth
 X, then queue 2 will get 0.99X, queue 3 will get 0.98X, queue
 4 will get 0.97X. Hardly matching any reasonable definition of high-mid-low
 priority!

Hmm, I think I did it that way because 100 is the largest number
and I didn't decide on how many queues I may add later so the numbers will
change but does the weight number really mean 99%, 98%, 97% priority?  So
should it really be 66, 33, and 1?


Cheers,
Vince - [EMAIL PROTECTED] - Vice President    __ 
Unix Networking Operations - FreeBSD-Real Unix for Free / / / / |  / |[__  ]
WurldLink Corporation  / / / /  | /  | __] ]
San Francisco - Honolulu - Hong Kong  / / / / / |/ / | __] ]
HongKong Stars/Gravis UltraSound Mailing Lists Admin /_/_/_/_/|___/|_|[]
[EMAIL PROTECTED] - oahu.DAL.NET Hawaii's DALnet IRC Network Server Admin




___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


deleting lost+found directory

2004-03-06 Thread Vincent Poy
Hi everyone:

On one of my disks that has no files in it mounted as /mnt/usr,
fsck is creating the lost+found directory and underneath each one are
directories named starting with # that is empty, is there anyway to remove
these?  Thanks.

[EMAIL PROTECTED] [10:26am][/mnt/usr/lost+found]  dir
total 56
drw-rw-rw-   20 root  wheel  -   512 Mar  6 10:16 #5558272
drwxr-xr-x5 root  wheel  -   512 Mar  4 04:00 #7018496
drwxrwxrwx  108 root  wheel  -  8704 Mar  1 04:00 #7206914
drwxr-xr-x   43 root  wheel  -  1024 Mar  4 04:00 #7254025
drwxr-xr-x  118 root  wheel  -  2048 Mar  4 04:00 #7254167
drwx--7 root  wheel  - 35840 Mar  6 10:16 .
drwxr-xr-x   23 root  wheel  -   512 Mar  6 10:16 ..
[EMAIL PROTECTED] [10:26am][/mnt/usr/lost+found]  dir *
#5558272:
total 38
drw-rw-rw-  20 root  wheel  -   512 Mar  6 10:16 .
drwx--   7 root  wheel  - 35840 Mar  6 10:16 ..

#7018496:
total 38
drwxr-xr-x  5 root  wheel  -   512 Mar  4 04:00 .
drwx--  7 root  wheel  - 35840 Mar  6 10:16 ..

#7206914:
total 46
drwxrwxrwx  108 root  wheel  -  8704 Mar  1 04:00 .
drwx--7 root  wheel  - 35840 Mar  6 10:16 ..

#7254025:
total 38
drwxr-xr-x  43 root  wheel  -  1024 Mar  4 04:00 .
drwx--   7 root  wheel  - 35840 Mar  6 10:16 ..

#7254167:
total 38
drwxr-xr-x  118 root  wheel  -  2048 Mar  4 04:00 .
drwx--7 root  wheel  - 35840 Mar  6 10:16 ..


Cheers,
Vince - [EMAIL PROTECTED] - Vice President    __ 
Unix Networking Operations - FreeBSD-Real Unix for Free / / / / |  / |[__  ]
WurldLink Corporation  / / / /  | /  | __] ]
San Francisco - Honolulu - Hong Kong  / / / / / |/ / | __] ]
HongKong Stars/Gravis UltraSound Mailing Lists Admin /_/_/_/_/|___/|_|[]
[EMAIL PROTECTED] - oahu.DAL.NET Hawaii's DALnet IRC Network Server Admin


___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: deleting lost+found directory

2004-03-06 Thread Vincent Poy
On Sat, 6 Mar 2004, Kris Kennaway wrote:

 On Sat, Mar 06, 2004 at 08:27:11AM -1000, Vincent Poy wrote:
  Hi everyone:
 
  On one of my disks that has no files in it mounted as /mnt/usr,
  fsck is creating the lost+found directory and underneath each one are
  directories named starting with # that is empty, is there anyway to remove
  these?  Thanks.

 They're just directories, remove them in the usual way.

Tried that, didn't work...

[EMAIL PROTECTED] [4:00pm][/mnt/usr]  cd lost+found
[EMAIL PROTECTED] [4:00pm][/mnt/usr/lost+found]  dir
total 56
drwxr-xr-x   20 root  wheel  -   512 Mar  6 10:16 #5558272
drwxr-xr-x5 root  wheel  -   512 Mar  4 04:00 #7018496
drwxr-xr-x  108 root  wheel  -  8704 Mar  1 04:00 #7206914
drwxr-xr-x   43 root  wheel  -  1024 Mar  4 04:00 #7254025
drwxr-xr-x  118 root  wheel  -  2048 Mar  4 04:00 #7254167
drwx--7 root  wheel  - 35840 Mar  6 10:33 .
drwxr-xr-x   49 root  wheel  -   512 Mar  5 20:43 ..
[EMAIL PROTECTED] [4:00pm][/mnt/usr/lost+found]  dir *
#5558272:
total 38
drwxr-xr-x  20 root  wheel  -   512 Mar  6 10:16 .
drwx--   7 root  wheel  - 35840 Mar  6 10:33 ..

#7018496:
total 38
drwxr-xr-x  5 root  wheel  -   512 Mar  4 04:00 .
drwx--  7 root  wheel  - 35840 Mar  6 10:33 ..

#7206914:
total 46
drwxr-xr-x  108 root  wheel  -  8704 Mar  1 04:00 .
drwx--7 root  wheel  - 35840 Mar  6 10:33 ..

#7254025:
total 38
drwxr-xr-x  43 root  wheel  -  1024 Mar  4 04:00 .
drwx--   7 root  wheel  - 35840 Mar  6 10:33 ..

#7254167:
total 38
drwxr-xr-x  118 root  wheel  -  2048 Mar  4 04:00 .
drwx--7 root  wheel  - 35840 Mar  6 10:33 ..
[EMAIL PROTECTED] [4:00pm][/mnt/usr/lost+found]  rm -rf *
rm: #5558272: Directory not empty
rm: #7018496: Directory not empty
rm: #7206914: Directory not empty
rm: #7254025: Directory not empty
rm: #7254167: Directory not empty


Cheers,
Vince - [EMAIL PROTECTED] - Vice President    __ 
Unix Networking Operations - FreeBSD-Real Unix for Free / / / / |  / |[__  ]
WurldLink Corporation  / / / /  | /  | __] ]
San Francisco - Honolulu - Hong Kong  / / / / / |/ / | __] ]
HongKong Stars/Gravis UltraSound Mailing Lists Admin /_/_/_/_/|___/|_|[]
[EMAIL PROTECTED] - oahu.DAL.NET Hawaii's DALnet IRC Network Server Admin


___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: deleting lost+found directory

2004-03-06 Thread Vincent Poy
On Sat, 6 Mar 2004, Kris Kennaway wrote:

 On Sat, Mar 06, 2004 at 02:00:12PM -1000, Vincent Poy wrote:

   They're just directories, remove them in the usual way.
 
  Tried that, didn't work...

  [EMAIL PROTECTED] [4:00pm][/mnt/usr/lost+found]  rm -rf *
  rm: #5558272: Directory not empty
  rm: #7018496: Directory not empty
  rm: #7206914: Directory not empty
  rm: #7254025: Directory not empty
  rm: #7254167: Directory not empty

 Unmount the filesystem and run fsck again (e.g. with the -f flag).
 You seem to have additional filesystem corruption here.

I did fsck with the -fy flag just now and this is what it says:

UNREF DIR  I=471104  OWNER=root MODE=40755
SIZE=512 MTIME=Mar  1 04:00 2004
RECONNECT? yes

SORRY. NO SPACE IN lost+found DIRECTORY
UNEXPECTED SOFT UPDATE INCONSISTENCY


Cheers,
Vince - [EMAIL PROTECTED] - Vice President    __ 
Unix Networking Operations - FreeBSD-Real Unix for Free / / / / |  / |[__  ]
WurldLink Corporation  / / / /  | /  | __] ]
San Francisco - Honolulu - Hong Kong  / / / / / |/ / | __] ]
HongKong Stars/Gravis UltraSound Mailing Lists Admin /_/_/_/_/|___/|_|[]
[EMAIL PROTECTED] - oahu.DAL.NET Hawaii's DALnet IRC Network Server Admin

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: deleting lost+found directory

2004-03-06 Thread Vincent Poy
On Sat, 6 Mar 2004, Kris Kennaway wrote:

 On Sat, Mar 06, 2004 at 03:53:13PM -1000, Vincent Poy wrote:
  On Sat, 6 Mar 2004, Kris Kennaway wrote:
 
   On Sat, Mar 06, 2004 at 02:00:12PM -1000, Vincent Poy wrote:
  
 They're just directories, remove them in the usual way.
   
Tried that, didn't work...
  
[EMAIL PROTECTED] [4:00pm][/mnt/usr/lost+found]  rm -rf *
rm: #5558272: Directory not empty
rm: #7018496: Directory not empty
rm: #7206914: Directory not empty
rm: #7254025: Directory not empty
rm: #7254167: Directory not empty
  
   Unmount the filesystem and run fsck again (e.g. with the -f flag).
   You seem to have additional filesystem corruption here.
 
  I did fsck with the -fy flag just now and this is what it says:
 
  UNREF DIR  I=471104  OWNER=root MODE=40755
  SIZE=512 MTIME=Mar  1 04:00 2004
  RECONNECT? yes
 
  SORRY. NO SPACE IN lost+found DIRECTORY
  UNEXPECTED SOFT UPDATE INCONSISTENCY

 Is the disk full or out of inodes?

Not sure about the inodes but the disk is at 0% capacity as ad2s1a
doesn't have any problems.  ad2s1d is the one where I rm -rf . since that
is used to do a dump,restore of /usr.


Cheers,
Vince - [EMAIL PROTECTED] - Vice President    __ 
Unix Networking Operations - FreeBSD-Real Unix for Free / / / / |  / |[__  ]
WurldLink Corporation  / / / /  | /  | __] ]
San Francisco - Honolulu - Hong Kong  / / / / / |/ / | __] ]
HongKong Stars/Gravis UltraSound Mailing Lists Admin /_/_/_/_/|___/|_|[]
[EMAIL PROTECTED] - oahu.DAL.NET Hawaii's DALnet IRC Network Server Admin

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: deleting lost+found directory

2004-03-06 Thread Vincent Poy
On Sat, 6 Mar 2004, Kris Kennaway wrote:

 On Sat, Mar 06, 2004 at 04:03:35PM -1000, Vincent Poy wrote:

   They're just directories, remove them in the usual way.
 
  Tried that, didn't work...

  [EMAIL PROTECTED] [4:00pm][/mnt/usr/lost+found]  rm -rf *
  rm: #5558272: Directory not empty
  rm: #7018496: Directory not empty
  rm: #7206914: Directory not empty
  rm: #7254025: Directory not empty
  rm: #7254167: Directory not empty

 Unmount the filesystem and run fsck again (e.g. with the -f flag).
 You seem to have additional filesystem corruption here.
   
I did fsck with the -fy flag just now and this is what it says:
   
UNREF DIR  I=471104  OWNER=root MODE=40755
SIZE=512 MTIME=Mar  1 04:00 2004
RECONNECT? yes
   
SORRY. NO SPACE IN lost+found DIRECTORY
UNEXPECTED SOFT UPDATE INCONSISTENCY
  
   Is the disk full or out of inodes?
 
  Not sure about the inodes but the disk is at 0% capacity as ad2s1a
  doesn't have any problems.  ad2s1d is the one where I rm -rf . since that
  is used to do a dump,restore of /usr.

 I don't understand which disk is which..can you please describe your
 configuration in more detail?

Okay, let's see...

/dev/ad0 and /dev/ad2 are identical drives (Hitachi TravelStar 2.5
7200RPM 60GB)

/dev/ad0s1a is 128MB for /  - 54% capacity
/dev/ad0s1b is 256MB for swap
/dev/ad0s1d is 56.3GB for /usr - 11% capacity

/dev/ad2s1a is 128MB for /mnt/root - 54% capacity
/dev/ad0s1b is 256MB for swap
/dev/ad0s1d is 56.3GB for /mnt/usr - 11% capacity max

Basically, /mnt/root is a clone of / and /mnt/usr is a clone of
/usr which is done as follows:

cd /mnt/root
/bin/chflags -R noschg .
/bin/rm -rf .*
/bin/rm -rf *
/sbin/dump -L -f- /|restore -rf-
cd /mnt/usr
/bin/chflags -R noschg .
/bin/rm -rf .*
/bin/rm -rf *
/sbin/dump -L -f- /usr|restore -rf-

/mnt/usr is the one with the problem I mentioned which is due to
an upgrade of -CURRENT to February 28, 2003 and even March 5, 2003 from
the September 26, 2003 which was working fine but now whenever this script
executes at 4AM, it causes a kernel panic with the following:

panic: kmem_malloc (4096): kmem_map too small: 377487360 total allocated
   at line 341 in file /usr/src/sys/vm/vm_kern.c
cpuid=0;
Debugger(panic)
Stopped at Debugger+0x46: xchgl %ebx, in_Debugger.0
db

The script runs fine if I do it manually after a few minutes after
a reboot.

I've tried adding the following to the kernel config, building and
installing the kernel

options VM_KMEM_SIZE_MAX=(768*1048576)
options VM_KMEM_SIZE_SCALE=2

as well as adding vm.kmem_size=429391872 to /boot/loader.conf to the
without the above options and they both panic right after this part:

CPU: Mobile Intel(R) Pentium(R) 4 - M CPU 2.60GHz (2592.36-MHz 686-class
CPU)  Origin = GenuineIntel  Id = 0xf29  Stepping = 9

Features=0xbfebf9ffFPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,SEP,MTRR,PGE,MCA,CMOV,P
AT,PSE36,CLFLUSH,DTS,ACPI,MMX,FXSR,SSE,SSE2,SS,HTT,TM,PBE
real memory  = 2147360768 (2047 MB)
avail memory = 2095669248 (1998 MB)

with something having to do with vm_kern.c.


Cheers,
Vince - [EMAIL PROTECTED] - Vice President    __ 
Unix Networking Operations - FreeBSD-Real Unix for Free / / / / |  / |[__  ]
WurldLink Corporation  / / / /  | /  | __] ]
San Francisco - Honolulu - Hong Kong  / / / / / |/ / | __] ]
HongKong Stars/Gravis UltraSound Mailing Lists Admin /_/_/_/_/|___/|_|[]
[EMAIL PROTECTED] - oahu.DAL.NET Hawaii's DALnet IRC Network Server Admin

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: deleting lost+found directory

2004-03-06 Thread Vincent Poy
On Sat, 6 Mar 2004, Vincent Poy wrote:

 On Sat, 6 Mar 2004, Kris Kennaway wrote:

  On Sat, Mar 06, 2004 at 04:03:35PM -1000, Vincent Poy wrote:
 
They're just directories, remove them in the usual way.
  
 Tried that, didn't work...
 
   [EMAIL PROTECTED] [4:00pm][/mnt/usr/lost+found]  rm -rf *
   rm: #5558272: Directory not empty
   rm: #7018496: Directory not empty
   rm: #7206914: Directory not empty
   rm: #7254025: Directory not empty
   rm: #7254167: Directory not empty
 
  Unmount the filesystem and run fsck again (e.g. with the -f flag).
  You seem to have additional filesystem corruption here.

   I did fsck with the -fy flag just now and this is what it says:

 UNREF DIR  I=471104  OWNER=root MODE=40755
 SIZE=512 MTIME=Mar  1 04:00 2004
 RECONNECT? yes

 SORRY. NO SPACE IN lost+found DIRECTORY
 UNEXPECTED SOFT UPDATE INCONSISTENCY
   
Is the disk full or out of inodes?
  
 Not sure about the inodes but the disk is at 0% capacity as ad2s1a
   doesn't have any problems.  ad2s1d is the one where I rm -rf . since that
   is used to do a dump,restore of /usr.
 
  I don't understand which disk is which..can you please describe your
  configuration in more detail?

   Okay, let's see...

 /dev/ad0 and /dev/ad2 are identical drives (Hitachi TravelStar 2.5
 7200RPM 60GB)

 /dev/ad0s1a is 128MB for /  - 54% capacity
 /dev/ad0s1b is 256MB for swap
 /dev/ad0s1d is 56.3GB for /usr - 11% capacity

 /dev/ad2s1a is 128MB for /mnt/root - 54% capacity
 /dev/ad0s1b is 256MB for swap
 /dev/ad0s1d is 56.3GB for /mnt/usr - 11% capacity max

   Basically, /mnt/root is a clone of / and /mnt/usr is a clone of
 /usr which is done as follows:

 cd /mnt/root
 /bin/chflags -R noschg .
 /bin/rm -rf .*
 /bin/rm -rf *
 /sbin/dump -L -f- /|restore -rf-
 cd /mnt/usr
 /bin/chflags -R noschg .
 /bin/rm -rf .*
 /bin/rm -rf *
 /sbin/dump -L -f- /usr|restore -rf-

   /mnt/usr is the one with the problem I mentioned which is due to
 an upgrade of -CURRENT to February 28, 2003 and even March 5, 2003 from
 the September 26, 2003 which was working fine but now whenever this script
 executes at 4AM, it causes a kernel panic with the following:

 panic: kmem_malloc (4096): kmem_map too small: 377487360 total allocated
at line 341 in file /usr/src/sys/vm/vm_kern.c
 cpuid=0;
 Debugger(panic)
 Stopped at Debugger+0x46: xchgl %ebx, in_Debugger.0
 db

   The script runs fine if I do it manually after a few minutes after
 a reboot.

 I've tried adding the following to the kernel config, building and
 installing the kernel

 options VM_KMEM_SIZE_MAX=(768*1048576)
 options VM_KMEM_SIZE_SCALE=2

 as well as adding vm.kmem_size=429391872 to /boot/loader.conf to the
 without the above options and they both panic right after this part:

 CPU: Mobile Intel(R) Pentium(R) 4 - M CPU 2.60GHz (2592.36-MHz 686-class
 CPU)  Origin = GenuineIntel  Id = 0xf29  Stepping = 9

 Features=0xbfebf9ffFPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,SEP,MTRR,PGE,MCA,CMOV,P
 AT,PSE36,CLFLUSH,DTS,ACPI,MMX,FXSR,SSE,SSE2,SS,HTT,TM,PBE
 real memory  = 2147360768 (2047 MB)
 avail memory = 2095669248 (1998 MB)

 with something having to do with vm_kern.c.

Just an update, fixed the problem.  Seems like I had to do
fsck -fyp /dev/ad2s1d followed by fsck -fy /dev/ad2s1d and then repeat the
same process again until neither one of them complains which took 5-6
passes.  Thanks Kris!


Cheers,
Vince - [EMAIL PROTECTED] - Vice President    __ 
Unix Networking Operations - FreeBSD-Real Unix for Free / / / / |  / |[__  ]
WurldLink Corporation  / / / /  | /  | __] ]
San Francisco - Honolulu - Hong Kong  / / / / / |/ / | __] ]
HongKong Stars/Gravis UltraSound Mailing Lists Admin /_/_/_/_/|___/|_|[]
[EMAIL PROTECTED] - oahu.DAL.NET Hawaii's DALnet IRC Network Server Admin

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: .snap directory?

2004-03-01 Thread Vincent Poy
On Mon, 1 Mar 2004, bryan m wrote:

 I've got an empty directory named .snap in my root directory, can anyone
 tell me what this is for?

See dump(8) manpage on the -L option.

Cheers,
Vince - [EMAIL PROTECTED] - Vice President    __ 
Unix Networking Operations - FreeBSD-Real Unix for Free / / / / |  / |[__  ]
WurldLink Corporation  / / / /  | /  | __] ]
San Francisco - Honolulu - Hong Kong  / / / / / |/ / | __] ]
HongKong Stars/Gravis UltraSound Mailing Lists Admin /_/_/_/_/|___/|_|[]
[EMAIL PROTECTED] - oahu.DAL.NET Hawaii's DALnet IRC Network Server Admin



___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


apache + SSL, modssl vs OpenSSL

2004-02-29 Thread Vincent Poy
Greetings all:

I'm planning to upgrade my old apache with a newer version and add
SSL but I noticed the ports has both apache + modssl as well as apache +
OpenSSL, are there any differences between the two of them and is one of
them better than the other?  Thanks.

Cheers,
Vince - [EMAIL PROTECTED] - Vice President    __ 
Unix Networking Operations - FreeBSD-Real Unix for Free / / / / |  / |[__  ]
WurldLink Corporation  / / / /  | /  | __] ]
San Francisco - Honolulu - Hong Kong  / / / / / |/ / | __] ]
HongKong Stars/Gravis UltraSound Mailing Lists Admin /_/_/_/_/|___/|_|[]
[EMAIL PROTECTED] - oahu.DAL.NET Hawaii's DALnet IRC Network Server Admin

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: FreeBSD Traffic Shaping?

2004-02-06 Thread Vincent Poy
On 6 Feb 2004, Dan Pelleg wrote:

 Vincent Poy [EMAIL PROTECTED] writes:

  Greetings all:
 
  I have a ADSL connection where the upstream pipe is smaller than
  the downstream with it at 1.5Mbps/384kbps now and will be upgrading to
  6Mbps/608kbps soon.  The issue I'm having is that whenever I upload, it
  fills the upstream to full capacity and the downstream would lag as the
  ACKs can't be send back in time.  I was told that with traffic shaping or
  fair queue routing would solve this issue but I only have one NIC
  interface as I am running FreeBSD on a fully loaded notebook with a
  Pentium 4M-2.6Ghz CPU, 2GB RAM and 60GB 7200RPM HDD with a 10/100 3COM xl0
  built in NIC.  The problem is that I have 8 static IP's with my ISP so
  that the LAN IP's, x.x.x.224-.231 netmask 255.255.255.0 are all locally on
  the LAN so I want those to use the full speed of the connection without
  traffic shaping.  The NIC also has the 192.168.x.x netmask 255.255.0.0
  addresses for the local LAN as well so how do I setup traffic shaping in
  this scenario so that only traffic that actually uses x.x.x.1 from the
  x.x.x.224 IP that isn't local LAN traffic actually use traffic shaping or
  fair queue routing while LAN traffic will just use the full speed.  I
  already have these options in the KERNEL config.
 
  options IPFIREWALL
  options IPDIVERT
  options DUMMYNET
  options BRIDGE
 
  Thanks for your help in advance!

 See ipfw(8). You can match rules by interface or address mask, so you don't
 need to touch LAN traffic.

That's the part I'm confused about.  Since I only have one
interface, I assume I have to do it by address mask but how would one
define it as for example,

10.0.0.224-231 would not use the traffic shaper but 10.0.0.1-223 as well
as 10.0.0.232-254 would?

 Correct, the problem when you upload on an assymetric link has to do with
 acknowledgment packets that downloading apps need to send back to the
 remote server, and they have to wait in the upload queue (which is
 saturated). You need to prioritize those. One way to do this is to filter
 on small iplen. This has been discussed in the mailing lists in the past
 (try the archive of the ipfw@ list). Just remember you can only shape
 outbound packets (ie, leaving your computer). Doesn't matter if they're up
 or down the DSL line, just that they go out (shaping incoming traffic makes
 no sense).

True.  But when you have the shaping, do you actually set it to
the speed of the line or do you set it to like 5% below the speed of the
line and on the acknowledgement packets, does traffic shaping actually
reserve some space for that to go back or does it just queue it a certain
way?  Thanks.


Cheers,
Vince - [EMAIL PROTECTED] - Vice President    __ 
Unix Networking Operations - FreeBSD-Real Unix for Free / / / / |  / |[__  ]
WurldLink Corporation  / / / /  | /  | __] ]
San Francisco - Honolulu - Hong Kong  / / / / / |/ / | __] ]
HongKong Stars/Gravis UltraSound Mailing Lists Admin /_/_/_/_/|___/|_|[]
[EMAIL PROTECTED] - oahu.DAL.NET Hawaii's DALnet IRC Network Server Admin

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: FreeBSD Traffic Shaping?

2004-02-06 Thread Vincent Poy
On Fri, 6 Feb 2004, Vincent Poy wrote:

 On 6 Feb 2004, Dan Pelleg wrote:

  Vincent Poy [EMAIL PROTECTED] writes:
 
   Greetings all:
  
 I have a ADSL connection where the upstream pipe is smaller than
   the downstream with it at 1.5Mbps/384kbps now and will be upgrading to
   6Mbps/608kbps soon.  The issue I'm having is that whenever I upload, it
   fills the upstream to full capacity and the downstream would lag as the
   ACKs can't be send back in time.  I was told that with traffic shaping or
   fair queue routing would solve this issue but I only have one NIC
   interface as I am running FreeBSD on a fully loaded notebook with a
   Pentium 4M-2.6Ghz CPU, 2GB RAM and 60GB 7200RPM HDD with a 10/100 3COM xl0
   built in NIC.  The problem is that I have 8 static IP's with my ISP so
   that the LAN IP's, x.x.x.224-.231 netmask 255.255.255.0 are all locally on
   the LAN so I want those to use the full speed of the connection without
   traffic shaping.  The NIC also has the 192.168.x.x netmask 255.255.0.0
   addresses for the local LAN as well so how do I setup traffic shaping in
   this scenario so that only traffic that actually uses x.x.x.1 from the
   x.x.x.224 IP that isn't local LAN traffic actually use traffic shaping or
   fair queue routing while LAN traffic will just use the full speed.  I
   already have these options in the KERNEL config.
  
   options IPFIREWALL
   options IPDIVERT
   options DUMMYNET
   options BRIDGE
  
 Thanks for your help in advance!
 
  See ipfw(8). You can match rules by interface or address mask, so you don't
  need to touch LAN traffic.

   That's the part I'm confused about.  Since I only have one
 interface, I assume I have to do it by address mask but how would one
 define it as for example,

 10.0.0.224-231 would not use the traffic shaper but 10.0.0.1-223 as well
 as 10.0.0.232-254 would?

  Correct, the problem when you upload on an assymetric link has to do with
  acknowledgment packets that downloading apps need to send back to the
  remote server, and they have to wait in the upload queue (which is
  saturated). You need to prioritize those. One way to do this is to filter
  on small iplen. This has been discussed in the mailing lists in the past
  (try the archive of the ipfw@ list). Just remember you can only shape
  outbound packets (ie, leaving your computer). Doesn't matter if they're up
  or down the DSL line, just that they go out (shaping incoming traffic makes
  no sense).

   True.  But when you have the shaping, do you actually set it to
 the speed of the line or do you set it to like 5% below the speed of the
 line and on the acknowledgement packets, does traffic shaping actually
 reserve some space for that to go back or does it just queue it a certain
 way?  Thanks.

After reading ipfw(8), I hope I have it correct that it's
like this:

ipfw add queue 1 ip from any to any out xmit xl0
ipfw pipe 1 config bw 384Kbit/s
ipfw queue 1 config pipe 1 weight 30 mask all

Now I'm just confused how to do the IP portion so that:

192.168.0.0 255.255.0.0
209.204.138.224-231
are not included

but everything else in 209.204.x.x is as well as any undefined IP.


Cheers,
Vince - [EMAIL PROTECTED] - Vice President    __ 
Unix Networking Operations - FreeBSD-Real Unix for Free / / / / |  / |[__  ]
WurldLink Corporation  / / / /  | /  | __] ]
San Francisco - Honolulu - Hong Kong  / / / / / |/ / | __] ]
HongKong Stars/Gravis UltraSound Mailing Lists Admin /_/_/_/_/|___/|_|[]
[EMAIL PROTECTED] - oahu.DAL.NET Hawaii's DALnet IRC Network Server Admin

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: FreeBSD Traffic Shaping?

2004-02-06 Thread Vincent Poy
On 6 Feb 2004, Dan Pelleg wrote:

 Vincent Poy [EMAIL PROTECTED] writes:

  On 6 Feb 2004, Dan Pelleg wrote:
 
   Vincent Poy [EMAIL PROTECTED] writes:
  
Greetings all:
   
I have a ADSL connection where the upstream pipe is smaller than
the downstream with it at 1.5Mbps/384kbps now and will be upgrading to
6Mbps/608kbps soon.  The issue I'm having is that whenever I upload, it
fills the upstream to full capacity and the downstream would lag as the
ACKs can't be send back in time.  I was told that with traffic shaping or
fair queue routing would solve this issue but I only have one NIC
interface as I am running FreeBSD on a fully loaded notebook with a
Pentium 4M-2.6Ghz CPU, 2GB RAM and 60GB 7200RPM HDD with a 10/100 3COM xl0
built in NIC.  The problem is that I have 8 static IP's with my ISP so
that the LAN IP's, x.x.x.224-.231 netmask 255.255.255.0 are all locally on
the LAN so I want those to use the full speed of the connection without
traffic shaping.  The NIC also has the 192.168.x.x netmask 255.255.0.0
addresses for the local LAN as well so how do I setup traffic shaping in
this scenario so that only traffic that actually uses x.x.x.1 from the
x.x.x.224 IP that isn't local LAN traffic actually use traffic shaping or
fair queue routing while LAN traffic will just use the full speed.  I
already have these options in the KERNEL config.
   
options IPFIREWALL
options IPDIVERT
options DUMMYNET
options BRIDGE
   
Thanks for your help in advance!
  
   See ipfw(8). You can match rules by interface or address mask, so you don't
   need to touch LAN traffic.
 
  That's the part I'm confused about.  Since I only have one
  interface, I assume I have to do it by address mask but how would one
  define it as for example,
 
  10.0.0.224-231 would not use the traffic shaper but 10.0.0.1-223 as well
  as 10.0.0.232-254 would?
 

 Whatever rule you have for shaping, you condition it on from
 10.0.0.224/28 (or whatever the appropriate mask is). Or use the negation
 of the condition and have a special case for non-capped traffic (so
 internet traffic falls through to the next rule).

That's the part where it becomes difficult since even though I
have 8 IP's, it's still on a /24 mask so only the 8 IP's in that /24 are
actually local.

   Correct, the problem when you upload on an assymetric link has to do with
   acknowledgment packets that downloading apps need to send back to the
   remote server, and they have to wait in the upload queue (which is
   saturated). You need to prioritize those. One way to do this is to filter
   on small iplen. This has been discussed in the mailing lists in the past
   (try the archive of the ipfw@ list). Just remember you can only shape
   outbound packets (ie, leaving your computer). Doesn't matter if they're up
   or down the DSL line, just that they go out (shaping incoming traffic makes
   no sense).
 
  True.  But when you have the shaping, do you actually set it to
  the speed of the line or do you set it to like 5% below the speed of the
  line and on the acknowledgement packets, does traffic shaping actually
  reserve some space for that to go back or does it just queue it a certain
  way?  Thanks.

 You need to handle the ack packets specially in your rules, it will not
 reserve bandwidth for them unless you tell it to.

 With ipfw, there are two ways to do this. Again I'm only talking about
 packets leaving your computer and heading to the internet (so condition the
 rules appropriately)

 1. two pipes, one with static allocation (say 95% of bw, or whatever works
 for you), other can have unlimited bw. Non-ack packets go to the capped
 pipe, ack packets go to the other one.

 alternatively,

 2. one pipe (unlimited bw), two queues in that pipe, one queue has a much
 much higher weight. Non-ack packets go to one pipe (low weight), ack
 packets to the other. This approach actually lets you use the entire
 available bandwidth for either kind of traffic if there is no other demand
 for it. It also frees you from having to specify the maximum bandwidth,
 which can change when you, say, upgrade your DSL, or even take the laptop
 to a wifi cafe.

The second approach does seem to work better since basically, it
prioritizes the ack portion.  I guess ipfw is something I have to figure
out. :)


Cheers,
Vince - [EMAIL PROTECTED] - Vice President    __ 
Unix Networking Operations - FreeBSD-Real Unix for Free / / / / |  / |[__  ]
WurldLink Corporation  / / / /  | /  | __] ]
San Francisco - Honolulu - Hong Kong  / / / / / |/ / | __] ]
HongKong Stars/Gravis UltraSound Mailing Lists Admin /_/_/_/_/|___/|_|[]
[EMAIL PROTECTED] - oahu.DAL.NET Hawaii's DALnet IRC Network Server Admin

___
[EMAIL PROTECTED

Re: FreeBSD Traffic Shaping?

2004-02-06 Thread Vincent Poy
On 6 Feb 2004, Dan Pelleg wrote:

 Vincent Poy [EMAIL PROTECTED] writes:

 
  After reading ipfw(8), I hope I have it correct that it's
  like this:
 
  ipfw add queue 1 ip from any to any out xmit xl0

 Shouldn't ipfw add queue 1 be enough?

Don't know, that was what I was told to do by Luigi many years ago
except it was for PPPoE so I didn't have a static IP at all as that one
was interface specific.

  ipfw pipe 1 config bw 384Kbit/s
  ipfw queue 1 config pipe 1 weight 30 mask all
 
  Now I'm just confused how to do the IP portion so that:
 
  192.168.0.0 255.255.0.0
  209.204.138.224-231
  are not included
 
  but everything else in 209.204.x.x is as well as any undefined IP.

 the first match wins. So:

 pass from 192.168.0.0/16 to any
 pass from 209.204.138.224/29 to any
 queue 1 from any to any

 alternatively, use a skipto rule. Whatever fits in your ruleset better.

A question on the /29 one, as my ISP seems to give the 8 IP's from
a /24 netmask, wouldn't the /29 actually filter out .224 and .231 from
working or does it basically excluse that range.


Cheers,
Vince - [EMAIL PROTECTED] - Vice President    __ 
Unix Networking Operations - FreeBSD-Real Unix for Free / / / / |  / |[__  ]
WurldLink Corporation  / / / /  | /  | __] ]
San Francisco - Honolulu - Hong Kong  / / / / / |/ / | __] ]
HongKong Stars/Gravis UltraSound Mailing Lists Admin /_/_/_/_/|___/|_|[]
[EMAIL PROTECTED] - oahu.DAL.NET Hawaii's DALnet IRC Network Server Admin


___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: FreeBSD Traffic Shaping?

2004-02-06 Thread Vincent Poy
On Fri, 6 Feb 2004, Dan Pelleg wrote:

 Vincent Poy writes:
  
  That's the part where it becomes difficult since even though I
   have 8 IP's, it's still on a /24 mask so only the 8 IP's in that /24 are
   actually local.

 Use a /27 mask.

a /27 would work except it'll be 32 IP's with 24 of them that
would need the traffic shaping.  So hopefully this would work:

ipfw add queue 1 ip from any to any out xmit xl0
or just ipfw add queue 1
followed by:

ipfw pipe 1 config bw 384Kbit/s
ipfw queue 1 config pipe 1 weight 30 mask all
ipfw pass from 192.168.0.0/16 to any
ipfw pass from 209.204.138.224 to any
ipfw pass from 209.204.138.225 to any
ipfw pass from 209.204.138.226 to any
ipfw pass from 209.204.138.227 to any
ipfw pass from 209.204.138.228 to any
ipfw pass from 209.204.138.229 to any
ipfw pass from 209.204.138.230 to any
ipfw pass from 209.204.138.231 to any
ipfw queue 1 from any to any

Now just have to figure out how to make it so that ack's would
have priority.  Thanks!


Cheers,
Vince - [EMAIL PROTECTED] - Vice President    __ 
Unix Networking Operations - FreeBSD-Real Unix for Free / / / / |  / |[__  ]
WurldLink Corporation  / / / /  | /  | __] ]
San Francisco - Honolulu - Hong Kong  / / / / / |/ / | __] ]
HongKong Stars/Gravis UltraSound Mailing Lists Admin /_/_/_/_/|___/|_|[]
[EMAIL PROTECTED] - oahu.DAL.NET Hawaii's DALnet IRC Network Server Admin

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


FreeBSD Traffic Shaping?

2004-02-05 Thread Vincent Poy
Greetings all:

I have a ADSL connection where the upstream pipe is smaller than
the downstream with it at 1.5Mbps/384kbps now and will be upgrading to
6Mbps/608kbps soon.  The issue I'm having is that whenever I upload, it
fills the upstream to full capacity and the downstream would lag as the
ACKs can't be send back in time.  I was told that with traffic shaping or
fair queue routing would solve this issue but I only have one NIC
interface as I am running FreeBSD on a fully loaded notebook with a
Pentium 4M-2.6Ghz CPU, 2GB RAM and 60GB 7200RPM HDD with a 10/100 3COM xl0
built in NIC.  The problem is that I have 8 static IP's with my ISP so
that the LAN IP's, x.x.x.224-.231 netmask 255.255.255.0 are all locally on
the LAN so I want those to use the full speed of the connection without
traffic shaping.  The NIC also has the 192.168.x.x netmask 255.255.0.0
addresses for the local LAN as well so how do I setup traffic shaping in
this scenario so that only traffic that actually uses x.x.x.1 from the
x.x.x.224 IP that isn't local LAN traffic actually use traffic shaping or
fair queue routing while LAN traffic will just use the full speed.  I
already have these options in the KERNEL config.

options IPFIREWALL
options IPDIVERT
options DUMMYNET
options BRIDGE

Thanks for your help in advance!


Cheers,
Vince - [EMAIL PROTECTED] - Vice President    __ 
Unix Networking Operations - FreeBSD-Real Unix for Free / / / / |  / |[__  ]
WurldLink Corporation  / / / /  | /  | __] ]
San Francisco - Honolulu - Hong Kong  / / / / / |/ / | __] ]
HongKong Stars/Gravis UltraSound Mailing Lists Admin /_/_/_/_/|___/|_|[]
[EMAIL PROTECTED] - oahu.DAL.NET Hawaii's DALnet IRC Network Server Admin

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: External modem suddenly not working (USR V.Everything)

2003-09-22 Thread Vincent Poy
On Mon, 22 Sep 2003, C. Ulrich wrote:

 On Sun, 2003-09-21 at 23:37, Travis Troyer wrote:
  I have a US Robotics V.Everything external modem connected to
  my system running FreeBSD 5.1 stable.  I got my ppp.conf and
  ppp.linkup files setup properly, and was able to dial-up to
  my provider many times.  I was connected when I accidentally
  knocked the power supply out of the wall socket, and lost my
  connection.  I plugged it back in, turned it off and back on,
  and tried to connect, without success.  So, I rebooted, with
  no success.  I tried shutting down both the modem and the
  system and cold-booting; still no go.  The modem connects
  fine under Windows (dual-boot), but refuses to even dial in
  FreeBSD.
 
  Any suggestions?
 
  Thanks,
 
  Travis Troyer

 See what happens when you try to interact with the modem manually with
 an old-fashioned serial terminal program like kermit or minicom. You'll
 have to figure out how to use the program first, but once you do, the
 following commands might help troubleshoot the problem:

 ATZ : Reset the modem
 ATDTxxx : Dial phone number xxx
 ATH0 : Hang up the modem

 Look around on the net for an AT command reference for more information
 on these.

 Oh, and I assume this is a _serial_ external modem and not USB? If it's
 USB there may be some further trickery involved.

 C. Ulrich

Actually, the manual is built into the modem...  He should check
the following:

ATI4
ATI5
ATI7

and then try this:

AT%$
AT$
AT$

The last three is the AT command set.  But post the output from
ATI4, ATI5, ATI7 so that we can help you out.


Cheers,
Vince - [EMAIL PROTECTED] - Vice President    __ 
Unix Networking Operations - FreeBSD-Real Unix for Free / / / / |  / |[__  ]
WurldLink Corporation  / / / /  | /  | __] ]
San Francisco - Honolulu - Hong Kong  / / / / / |/ / | __] ]
HongKong Stars/Gravis UltraSound Mailing Lists Admin /_/_/_/_/|___/|_|[]
[EMAIL PROTECTED] - oahu.DAL.NET Hawaii's DALnet IRC Network Server Admin

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: linksys wireless-G pci driver?

2003-09-16 Thread Vincent Poy
On Tue, 16 Sep 2003, Lalani, Qureish wrote:

 Pondering the idea of installing free bsd on my box. My only concern is
 whether or not there is a driver for the Linksys PCI 802.11g wireless
 adapter. Any guidance is appreciated.

Until there is a Broadcom driver which is what LinkSys uses or
anything that has that 54g with a red circle on it on the box, those are
all using 802.11g chipsets from Broadcom.  You would be better off with
the supported NetGear or D-Link 802.11g cards using Atheros chipsets as
those are supported.


Cheers,
Vince - [EMAIL PROTECTED] - Vice President    __ 
Unix Networking Operations - FreeBSD-Real Unix for Free / / / / |  / |[__  ]
WurldLink Corporation  / / / /  | /  | __] ]
San Francisco - Honolulu - Hong Kong  / / / / / |/ / | __] ]
HongKong Stars/Gravis UltraSound Mailing Lists Admin /_/_/_/_/|___/|_|[]
[EMAIL PROTECTED] - oahu.DAL.NET Hawaii's DALnet IRC Network Server Admin

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: 802.11g and FreeBSD based access point ...

2003-09-14 Thread Vincent Poy
On Sat, 13 Sep 2003, Greg Lehey wrote:

 On Friday,  5 September 2003 at 17:55:14 +0200, Hans Vledder wrote:
  All,
 
  I am considering building a 802.11g FreeBSD access point. I've read
  that I will need a network adapter that supports hostap (access
  point mode). Does anyone known a brand/model (PCI) that's being
  supported by FreeBSD ?

 I don't have a direct answer to this question, but a bit of
 information:

 Last weekend I bought a couple of 802.11b/g wireless routers (AirLink,
 I think).  These boxes contain an access point, a four-port Ethernet
 switch and an additional downlink Ethernet port.  They're intended as
 cable or ADSL gateways, accessed by the downlink port.  You can
 configure the downlink port to access the other networks by NAT or
 directly, and you can run a mini-firewall if you want.  It can also
 function as a DHCP server.  These boxes cost me $80 at Fry's, the same
 price as a basic 802.11b access point.

 This weekend I went back to Fry's looking for Atheros-based wireless
 cards.  The cheapest I could find cost $100.

 Based on that, it's not clear why you would want to build an AP from a
 wireless card.

 Greg

I think the reason is probably because the other reason to go all
Atheros is because it supports the SuperA/G as well which allows 108Mbps
raw data or 90Mbps active throughput and that's only possible with Atheros
but the routers so far that has Atheros are the D-Link DI-774 and the
Netgear FWAG114 and they are atleast $230 each.  For PCMCIA and Desktop
cards, the Netgear A+G or D-Link A+G has the Atheros inside.


Cheers,
Vince - [EMAIL PROTECTED] - Vice President    __ 
Unix Networking Operations - FreeBSD-Real Unix for Free / / / / |  / |[__  ]
WurldLink Corporation  / / / /  | /  | __] ]
San Francisco - Honolulu - Hong Kong  / / / / / |/ / | __] ]
HongKong Stars/Gravis UltraSound Mailing Lists Admin /_/_/_/_/|___/|_|[]
[EMAIL PROTECTED] - oahu.DAL.NET Hawaii's DALnet IRC Network Server Admin

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Ghost for FreeBSD

2003-09-08 Thread Vincent Poy
On Mon, 8 Sep 2003, Mark wrote:

 - Original Message -
 From: Vincent Poy [EMAIL PROTECTED]
 To: Mark [EMAIL PROTECTED]
 Cc: Ruben de Groot [EMAIL PROTECTED]; [EMAIL PROTECTED]; Joshua
 Oreman [EMAIL PROTECTED]
 Sent: Thursday, September 04, 2003 10:16 AM
 Subject: Re: Ghost for FreeBSD

 Sorry for the tardiness of my reply (see below); I was otherwise engaged.

   But what if I just made a boo-boo on the root partition? My quandary has
   always been that I know of no way to restore the / slice on the existing
   disk-set (RAID-1). I can boot off the CD, but then I am still stuck on
   the same / slice. Although I have not yet messed up / to the point of
   having to do a full restore, this might well be needed at some point (an
   extended power-outage, for instance, ruining the file-system).
 
  Well, if you made a error on the root partition, this assumes you
  did not mirror your errors to the backup drive... Then all you have to do
  is boot using the backup drive from the Boot Manager.
 
   Would it work if I mounted a spare partition, on the same array,
   restore the root partition therein, and then edited /etc/fstab
   accordingly? It seems to me, though, that the kernel cannot possibly use
   /etc/fstab to determine what device the root partition will be, as
   /etc/fstab is itself on that root-partition. So, I then take it the MBR
   supplies the entry-point for FreeBSD to boot from (which will be
   considered the root partition), so that booting of a spare slice would
   require an edit in the MBR (which I am not too keen on doing, btw).
 
  No, you would not have to mount it. Assuming you had the FreeBSD
  Boot Manager on the drives...

 Ok. But this still means that, in order to restore the root partition, I
 will need to boot from a different drive, right? And I have no other,
 bootable drive in the machine: just the array. I had hoped that booting from
 the FreeBSD boot CD would have the same effect as booting from a different
 hard disk; but alas, the FreeBSD boot CD mounts the existing array, which
 brings me back to square one.

Yeah, basically you just need to get FreeBSD booted up so that you
can use the dump/restore commands.

 Which, of course, prompts the question: is there not a way to boot from the
 FreeBSD boot CD that does not use the existing array?

No idea about that one since you can always boot using the
root/mfs and fixit floppies and then mount/dump/restore.

 Thanks,

 - Mark


Cheers,
Vince - [EMAIL PROTECTED] - Vice President    __ 
Unix Networking Operations - FreeBSD-Real Unix for Free / / / / |  / |[__  ]
WurldLink Corporation  / / / /  | /  | __] ]
San Francisco - Honolulu - Hong Kong  / / / / / |/ / | __] ]
HongKong Stars/Gravis UltraSound Mailing Lists Admin /_/_/_/_/|___/|_|[]
[EMAIL PROTECTED] - oahu.DAL.NET Hawaii's DALnet IRC Network Server Admin

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Ghost for FreeBSD

2003-09-04 Thread Vincent Poy
On Thu, 4 Sep 2003, Mark wrote:

 - Original Message -
 From: Vincent Poy [EMAIL PROTECTED]
 To: Ruben de Groot [EMAIL PROTECTED]
 Cc: [EMAIL PROTECTED]; Joshua Oreman [EMAIL PROTECTED]
 Sent: Wednesday, September 03, 2003 11:21 PM
 Subject: Re: Ghost for FreeBSD

  On Wed, 3 Sep 2003, Ruben de Groot wrote:
 
   On Wed, Sep 03, 2003 at 07:58:35AM -0700, Joshua Oreman typed:
  
   SNIP
  
 Ok; what you have done is made a dump on the root mirror device;
 great! But how do I now tell FreeBSD to use that restored
 partition as /? Edit /etc/fstab to effect the change for the next
 boot? I have a nagging suspicion it will then still boot off the old
 / slice.
   
Ah, that's right. You have to edit /etc/fstab *AND* tell the kernel.
I'm not sure exactly what you need to do to boot from a different root
device; maybe someone will fille me in?
  
   You'll have to edit /etc/fstab on the mirror root partition. Then you'll
   have to tell the BIOS to boot disk1 instead of disk0. If your BIOS
   doesn't support this, you're out of luck. You'll have to switch cables
   then. If it does, no kernel changes necessary.
  
   Ruben
 
  Never thought about the BIOS but if he installed the FreeBSD Boot
  Manager on both drives, then all he has to do to boot the second drive is
  he has to hit the key to select the second drive when the Boot Manager
  shows up prior to FreeBSD booting. The switching cables or even replacing
  the original drive with the second drive is really only if the main drive
  dies or if you wanted to use a different drive like greater capacity,
  faster, etc or you didn't like the brandname of the drive for some reason.


 Thanks, Vincent.

 But what if I just made a boo-boo on the root partition? My quandary has
 always been that I know of no way to restore the / slice on the existing
 disk-set (RAID-1). I can boot off the CD, but then I am still stuck on the
 same / slice. Although I have not yet messed up / to the point of having to
 do a full restore, this might well be needed at some point (an extended
 power-outage, for instance, ruining the file-system).

Well, if you made a error on the root partition, this assumes you
did not mirror your errors to the backup drive... Then all you have to do
is boot using the backup drive from the Boot Manager.

 Would it work if I mounted a spare partition, on the same array, restore
 the root partition therein, and then edited /etc/fstab accordingly? It seems
 to me, though, that the kernel cannot possibly use /etc/fstab to determine
 what device the root partition will be, as /etc/fstab is itself on that
 root-partition. So, I then take it the MBR supplies the entry-point for
 FreeBSD to boot from (which will be considered the root partition), so that
 booting of a spare slice would require an edit in the MBR (which I am not
 too keen on doing, btw).

No, you would not have to mount it.  Assuming you had the FreeBSD
Boot Manager on the drives...  it will show the prompt like:

F1 FreeBSD - this is your primary HDD
F2 FreeBSD - this is your secondary HDD
Fn FreeBSD - other HDD's

If you don't press anything or hit F1, then it'll just boot your primary
HDD /kernel

If you hit F2, then it will boot /kernel from the second HDD and read
/etc/fstab which is on the second drive as well.  It doesn't go back to
the first drive because you're not using the kernel from the first drive
at all.  The first drive won't even be visible until you mount it since
your /, /usr, /var will all be from the second HDD now.  That was the
reason I told you to edit the /etc/fstab for the second HDD which is
really /mnt/root/etc/fstab when you are booting off the first HDD.  When
you boot off the second HD, the first drive is really not even used til
you mount it.


Cheers,
Vince - [EMAIL PROTECTED] - Vice President    __ 
Unix Networking Operations - FreeBSD-Real Unix for Free / / / / |  / |[__  ]
WurldLink Corporation  / / / /  | /  | __] ]
San Francisco - Honolulu - Hong Kong  / / / / / |/ / | __] ]
HongKong Stars/Gravis UltraSound Mailing Lists Admin /_/_/_/_/|___/|_|[]
[EMAIL PROTECTED] - oahu.DAL.NET Hawaii's DALnet IRC Network Server Admin


___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Ghost for FreeBSD

2003-09-03 Thread Vincent Poy
g4u doesn't work too well as I don't have another ftp server
locally other then the FreeBSD machine itself.  I already figured out how
to do it and a better way that can be done via cron automatically...

12.3.1 Using sysinstall(8)
Navigating Sysinstall

You may use /stand/sysinstall to partition and label a new disk using
its easy to use menus. Either login as user root or use the su command.
Run /stand/sysinstall and enter the Configure menu. Within the FreeBSD
Configuration Menu, scroll down and select the Fdisk option.

fdisk Partition Editor

Once inside fdisk, we can type A to use the entire disk for FreeBSD.
When asked if you want to ``remain cooperative with any future possible
operating systems'', answer YES. Write the changes to the disk using W.
Now exit the FDISK editor by typing q. Next you will be asked about the
Master Boot Record. Since you are adding a disk to an already running
system, choose None.

Disk Label Editor

Next, you need to exit sysinstall and start it again. Follow the
directions above, although this time choose the Label option. This will
enter the Disk Label Editor. This is where you will create the traditional
BSD partitions. A disk can have up to eight partitions, labeled a-h. A few
of the partition labels have special uses. The a partition is used for the
root partition (/). Thus only your system disk (e.g, the disk you boot
from) should have an a partition. The b partition is used for swap
partitions, and you may have many disks with swap partitions. The c
partition addresses the entire disk in dedicated mode, or the entire
FreeBSD slice in slice mode. The other partitions are for general use.

sysinstall's Label editor favors the e partition for non-root, non-swap
partitions. Within the Label editor, create a single file system by typing
C. When prompted if this will be a FS (file system) or swap, choose FS and
type in a mount point (e.g, /mnt). When adding a disk in post-install
mode, sysinstall will not create entries in /etc/fstab for you, so the
mount point you specify is not important.

In this stage, specify / for the mountpoint to get the a partition and
then change the mountpoint to /mnt/root before exiting or writing in the
label editor.

You are now ready to write the new label to the disk and create a file
system on it. Do this by typing W. Ignore any errors from sysinstall that
it could not mount the new partition. Exit the Label Editor and sysinstall
completely.

After this:
mkdir /mnt
mkdir /mnt/root
mkdir /mnt/var
mkdir /mnt/usr

/sbin/mount /dev/ad1s1a /mnt/root
/sbin/mount /dev/ad1s1e /mnt/var
/sbin/mount /dev/ad1s1f /mnt/usr

cd /mnt/root
/sbin/dump -L -f- /|restore -rf-
cd /mnt/var
/sbin/dump -L -f- /var|restore -rf-
cd /mnt/usr
/sbin/dump -L -f- /usr|restore -rf-


Cheers,
Vince - [EMAIL PROTECTED] - Vice President    __ 
Unix Networking Operations - FreeBSD-Real Unix for Free / / / / |  / |[__  ]
WurldLink Corporation  / / / /  | /  | __] ]
San Francisco - Honolulu - Hong Kong  / / / / / |/ / | __] ]
HongKong Stars/Gravis UltraSound Mailing Lists Admin /_/_/_/_/|___/|_|[]
[EMAIL PROTECTED] - oahu.DAL.NET Hawaii's DALnet IRC Network Server Admin

On Wed, 3 Sep 2003, Mike Tancsa wrote:


 use g4u to make a copy of your HD to a local ftp server off your original
 drive. You can then restore it that way too.  i.e you dont need both drives
 in at the same time.

  ---Mike

 At 10:56 AM 30/08/2003 -1000, Vincent Poy wrote:
  I have a question regarding this as well.  Let's say that my
 FreeBSD is running on a Dell Inspiron 8200 notebook with a Fujitsu 2.5
 4200rpm 60GB HD which has 116280 cylinders/16 heads/63 sectors per track/
 512 bytes per sector.  I just recently bought a Hitachi TravelStar 7K60
 7200rpm 60GB HD which has 116280 cylinders/16 heads/63 sectors per
 track, 512 bytes per sector but the problem is I can't use g4u as I have
 to remove the FDD from the bay to add the 2nd HDD to the system.  So this
 appears that both drives are 100% identical in size and parameters.  What
 do I need to do to completely copy the entire drive from the old drive to
 the new drive under FreeBSD?  Thanks.
 
 
 Cheers,
 Vince - [EMAIL PROTECTED] - Vice President    __ 
 Unix Networking Operations - FreeBSD-Real Unix for Free / / / / |  / |[__  ]
 WurldLink Corporation  / / / /  | /  | __] ]
 San Francisco - Honolulu - Hong Kong  / / / / / |/ / | __] ]
 HongKong Stars/Gravis UltraSound Mailing Lists Admin /_/_/_/_/|___/|_|[]
 [EMAIL PROTECTED] - oahu.DAL.NET Hawaii's DALnet IRC Network Server Admin
 
 On Sat, 30 Aug 2003, Mike Tancsa wrote:
 
  
   Sorry, didnt mean to hit send so quickly.  What I meant to say is that g4u
   will do what you want.  Also, take a look at just plain old dump and
   restore.  If you want to have an image of what is on your partition as well
   as have

Re: Ghost for FreeBSD

2003-09-03 Thread Vincent Poy
On Wed, 3 Sep 2003, Mark wrote:

 - Original Message -
 From: Vincent Poy [EMAIL PROTECTED]
 To: Mike Tancsa [EMAIL PROTECTED]
 Cc: [EMAIL PROTECTED]
 Sent: Wednesday, September 03, 2003 2:22 PM
 Subject: Re: Ghost for FreeBSD


  cd /mnt/root
  /sbin/dump -L -f- /|restore -rf-
  cd /mnt/var
  /sbin/dump -L -f- /var|restore -rf-
  cd /mnt/usr
  /sbin/dump -L -f- /usr|restore -rf-

 I have heard this before, but I never understand this part. :) How does
 creating a /mnt/root directory, and restoring in that directory get my /
 slice back? Then the restored data will just sit in /mnt/root! What good
 does it there?

Well, the purpose of that is so that your actually HD that's being
used fails, you can just plug the second drive in as the primary drive and
boot from it.  Since it's basically the clone of the original drive.

 Or should I create /mnt/root as partition, about equal in size to the root
 partition, and then restore therein, and do the old switcheroo in /etc/fstab
 later, to make it the root partion?

My /mnt/root and / are the same size and the /mnt/usr and /usr are
the same size.  The /mnt stuff just needs to be the same size or a larger
size.  I don't have a separate /var partition but there are two ways to
use what's on mount.  One is to edit the /mnt/root/etc/fstab to point to
the new device names and assuming you put in the FreeBSD Boot Manager, one
of the Fn keys as shown on the screen will allow you to choose the drive.
If you don't choose, then it's your original drive that gets booted up.
The second method is really if the first drive dies for whatever reason,
the second drive will be bootable with the last dump/restore that is done.
In my case, I do the dump/restore at 4AM every morning.  I needed to do
this since I'm running on a Dell Inspiron 8200 notebook and the last time,
the IBM 60GB 2.5 5400rpm 2MB Cache TravelStar HD died, I lost everything
except the /etc directory...  I've already verified this works as my / and
/usr is on a Fujitsu 60GB 2.5 4200rpm 2MB Cache HD while I replaced it
with a Hitachi 60GB 2.5 7200rpm 8MB Cache HD for the primary drive.
After the dump/restore is done, I swapped the drives and added another
identical Hitachi drive for the second drive so now I'm running on the new
drive and dump/restoring to a second identical drive while keeping the
Fujitsu as a spare.  This is what my df output looks like as the available
space is different due to the primary drive having changes after 4AM
Pacific Daylight Time.

[EMAIL PROTECTED] [12:04am][/home/vince]  df
Filesystem  1K-blocksUsedAvail Capacity  Mounted on
/dev/ad0s1a126702   843123225472%/
devfs   1   10   100%/dev
/dev/ad0s1d  56376586 4100320 47766140 8%/usr
procfs  4   40   100%/proc
/dev/ad2s1a126702   843943217272%/mnt/root
/dev/ad2s1d  56376586 4123490 47742970 8%/mnt/usr

 I have successfully restored /var and /usr, on occasion; but that is rather
 easy, as they can be unmounted. With the root partition, that is not
 possible, of course. Short of having to switch cables on harddisks, is there
 a software method that will allow me to restore/switch the root partion?

Well, if you used the FreeBSD Boot Manager - prior to FreeBSD even
booting up, it will show a menu.  With Fn like:

F1 FreeBSD
F5 FreeBSD

F1 will boot by default
If you hit F5, it will boot the second drive but make sure the second
drive's /etc/fstab has the correct device names since it should goto the
wherever you had the /mnt stuff.

 Thanks!

 - Mark


Cheers,
Vince - [EMAIL PROTECTED] - Vice President    __ 
Unix Networking Operations - FreeBSD-Real Unix for Free / / / / |  / |[__  ]
WurldLink Corporation  / / / /  | /  | __] ]
San Francisco - Honolulu - Hong Kong  / / / / / |/ / | __] ]
HongKong Stars/Gravis UltraSound Mailing Lists Admin /_/_/_/_/|___/|_|[]
[EMAIL PROTECTED] - oahu.DAL.NET Hawaii's DALnet IRC Network Server Admin

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Ghost for FreeBSD

2003-09-03 Thread Vincent Poy
On Wed, 3 Sep 2003, Mark wrote:

 - Original Message -
 From: Joshua Oreman [EMAIL PROTECTED]
 To: Mark [EMAIL PROTECTED]
 Cc: [EMAIL PROTECTED]
 Sent: Wednesday, September 03, 2003 4:08 PM
 Subject: Re: Ghost for FreeBSD


cd /mnt/root
/sbin/dump -L -f- /|restore -rf-
cd /mnt/var
/sbin/dump -L -f- /var|restore -rf-
cd /mnt/usr
/sbin/dump -L -f- /usr|restore -rf-
  
   I have heard this before, but I never understand this part. :) How
   does creating a /mnt/root directory, and restoring in that directory
   get my / slice back? Then the restored data will just sit
   in /mnt/root! What good does it there?
  
   Or should I create /mnt/root as partition, about equal in size to the
 root

  To mirror the root partition to another:
  # mkdir /mnt/root
  # mount /dev/ROOT-MIRROR-DEV /mnt/root
  # cd /mnt/root
  # /sbin/dump -f- / | restore -rf-
 
  You will not *need* to umount the root partition.

 Ok; what you have done is made a dump on the root mirror device; great! But
 how do I now tell FreeBSD to use that restored partition as /? Edit
 /etc/fstab to effect the change for the next boot? I have a nagging
 suspicion it will then still boot off the old / slice.

 - Mark

Editing /mnt/root/etc/fstab and updating it with the new entries.
Perhaps you can make a script so that after the dump/restore.. it'll copy
/etc/fstab.new to /mnt/root/etc/fstab - the fstab.new file is basically
the device names of the new device.  The next boot thing is easy.  If
you've ever had more than one HD on the machine with OSes on both the
first and second HD's and used FreeBSD's Boot Manager... The first thing
FreeBSD will show is the BootManager which goes something like this:

F1 FreeBSD
F5 FreeBSD

If you don't do anything, it will always boot with F1 which is the first
drive.  F5 is the second drive, I don't remember the exact name as it
varies.   So if you hit F5, it will use the /etc/fstab on the second drive
as it will use that drive to boot up.


Cheers,
Vince - [EMAIL PROTECTED] - Vice President    __ 
Unix Networking Operations - FreeBSD-Real Unix for Free / / / / |  / |[__  ]
WurldLink Corporation  / / / /  | /  | __] ]
San Francisco - Honolulu - Hong Kong  / / / / / |/ / | __] ]
HongKong Stars/Gravis UltraSound Mailing Lists Admin /_/_/_/_/|___/|_|[]
[EMAIL PROTECTED] - oahu.DAL.NET Hawaii's DALnet IRC Network Server Admin




___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Ghost for FreeBSD

2003-09-03 Thread Vincent Poy
On Wed, 3 Sep 2003, Joshua Oreman wrote:

 On Wed, Sep 03, 2003 at 02:27:03PM + or thereabouts, Mark wrote:
  - Original Message -
  From: Joshua Oreman [EMAIL PROTECTED]
  To: Mark [EMAIL PROTECTED]
  Cc: [EMAIL PROTECTED]
  Sent: Wednesday, September 03, 2003 4:08 PM
  Subject: Re: Ghost for FreeBSD
 
 
 cd /mnt/root
 /sbin/dump -L -f- /|restore -rf-
 cd /mnt/var
 /sbin/dump -L -f- /var|restore -rf-
 cd /mnt/usr
 /sbin/dump -L -f- /usr|restore -rf-
   
I have heard this before, but I never understand this part. :) How
does creating a /mnt/root directory, and restoring in that directory
get my / slice back? Then the restored data will just sit
in /mnt/root! What good does it there?
   
Or should I create /mnt/root as partition, about equal in size to the
  root
 
   To mirror the root partition to another:
   # mkdir /mnt/root
   # mount /dev/ROOT-MIRROR-DEV /mnt/root
   # cd /mnt/root
   # /sbin/dump -f- / | restore -rf-
  
   You will not *need* to umount the root partition.
 
  Ok; what you have done is made a dump on the root mirror device; great! But
  how do I now tell FreeBSD to use that restored partition as /? Edit
  /etc/fstab to effect the change for the next boot? I have a nagging
  suspicion it will then still boot off the old / slice.

 Ah, that's right. You have to edit /etc/fstab *AND* tell the kernel. I'm not
 sure exactly what you need to do to boot from a different root device; maybe
 someone will fille me in?

Assuming when he setted up the second drive with fdisk, he chose
the FreeBSD Boot Manager and that his new /, /var, /usr needs to be the
same or identical sizes as his current FreeBSD drive.  Then he has to edit
the /mnt/root/etc/fstab with the new device names and then when he boots
up:

The FreeBSD Boot Manager will show up with something like:

F1 FreeBSD
F2 FreeBSD

F1 is the first FreeBSD drive which will boot by default if he doesn't
touch anything.  If he hits F1, it will still boot F1.

If he hits F5, then it will be using the mirrored drive for everything.

Cheers,
Vince - [EMAIL PROTECTED] - Vice President    __ 
Unix Networking Operations - FreeBSD-Real Unix for Free / / / / |  / |[__  ]
WurldLink Corporation  / / / /  | /  | __] ]
San Francisco - Honolulu - Hong Kong  / / / / / |/ / | __] ]
HongKong Stars/Gravis UltraSound Mailing Lists Admin /_/_/_/_/|___/|_|[]
[EMAIL PROTECTED] - oahu.DAL.NET Hawaii's DALnet IRC Network Server Admin

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Ghost for FreeBSD

2003-09-03 Thread Vincent Poy
On Wed, 3 Sep 2003, Ruben de Groot wrote:

 On Wed, Sep 03, 2003 at 07:58:35AM -0700, Joshua Oreman typed:

 SNIP

   Ok; what you have done is made a dump on the root mirror device; great! But
   how do I now tell FreeBSD to use that restored partition as /? Edit
   /etc/fstab to effect the change for the next boot? I have a nagging
   suspicion it will then still boot off the old / slice.
 
  Ah, that's right. You have to edit /etc/fstab *AND* tell the kernel. I'm not
  sure exactly what you need to do to boot from a different root device; maybe
  someone will fille me in?

 You'll have to edit /etc/fstab on the mirror root partition. Then you'll
 have to tell the BIOS to boot disk1 instead of disk0. If your BIOS doesn't
 support this, you're out of luck. You'll have to switch cables then.
 If it does, no kernel changes necessary.

 Ruben

Never thought about the BIOS but if he installed the FreeBSD Boot
Manager on both drives, then all he has to do to boot the second drive is
he has to hit the key to select the second drive when the Boot Manager
shows up prior to FreeBSD booting.  The switching cables or even replacing
the original drive with the second drive is really only if the main drive
dies or if you wanted to use a different drive like greater capacity,
faster, etc or you didn't like the brandname of the drive for some reason.


Cheers,
Vince - [EMAIL PROTECTED] - Vice President    __ 
Unix Networking Operations - FreeBSD-Real Unix for Free / / / / |  / |[__  ]
WurldLink Corporation  / / / /  | /  | __] ]
San Francisco - Honolulu - Hong Kong  / / / / / |/ / | __] ]
HongKong Stars/Gravis UltraSound Mailing Lists Admin /_/_/_/_/|___/|_|[]
[EMAIL PROTECTED] - oahu.DAL.NET Hawaii's DALnet IRC Network Server Admin


___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: RAID1 is DEGRADED, but which disk is faulty?

2003-09-03 Thread Vincent Poy
Is there a tutorial somewhere on how to do RAID1 in FreeBSD with 2
drives with the 2nd drive either same capacity or larger.  I know the 2nd
drive will only have the same capacity as the first but assuming you were
using the FreeBSD Standard Boot Manager and then have /, /var, /usr - is
there a way to do RAID1 so that the 2nd drive will have identical FreeBSD
Standard Boot Manager in the MBR with the /, /var, /usr?


Cheers,
Vince - [EMAIL PROTECTED] - Vice President    __ 
Unix Networking Operations - FreeBSD-Real Unix for Free / / / / |  / |[__  ]
WurldLink Corporation  / / / /  | /  | __] ]
San Francisco - Honolulu - Hong Kong  / / / / / |/ / | __] ]
HongKong Stars/Gravis UltraSound Mailing Lists Admin /_/_/_/_/|___/|_|[]
[EMAIL PROTECTED] - oahu.DAL.NET Hawaii's DALnet IRC Network Server Admin

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Ghost for FreeBSD

2003-08-30 Thread Vincent Poy
I have a question regarding this as well.  Let's say that my
FreeBSD is running on a Dell Inspiron 8200 notebook with a Fujitsu 2.5
4200rpm 60GB HD which has 116280 cylinders/16 heads/63 sectors per track/
512 bytes per sector.  I just recently bought a Hitachi TravelStar 7K60
7200rpm 60GB HD which has 116280 cylinders/16 heads/63 sectors per
track, 512 bytes per sector but the problem is I can't use g4u as I have
to remove the FDD from the bay to add the 2nd HDD to the system.  So this
appears that both drives are 100% identical in size and parameters.  What
do I need to do to completely copy the entire drive from the old drive to
the new drive under FreeBSD?  Thanks.


Cheers,
Vince - [EMAIL PROTECTED] - Vice President    __ 
Unix Networking Operations - FreeBSD-Real Unix for Free / / / / |  / |[__  ]
WurldLink Corporation  / / / /  | /  | __] ]
San Francisco - Honolulu - Hong Kong  / / / / / |/ / | __] ]
HongKong Stars/Gravis UltraSound Mailing Lists Admin /_/_/_/_/|___/|_|[]
[EMAIL PROTECTED] - oahu.DAL.NET Hawaii's DALnet IRC Network Server Admin

On Sat, 30 Aug 2003, Mike Tancsa wrote:


 Sorry, didnt mean to hit send so quickly.  What I meant to say is that g4u
 will do what you want.  Also, take a look at just plain old dump and
 restore.  If you want to have an image of what is on your partition as well
 as have incremental backups it works really well too.

  ---Mike

 At 10:29 AM 30/08/2003 -0400, Mike Tancsa wrote:
 Hi,
 take a look at g4u/ It works really well
 
 http://www.feyrer.de/g4u/
 
  ---Mike
 
 At 03:02 PM 30/08/2003 +0200, Stefan Malte Schumacher wrote:
 
 Hi
 
 Well, just like the subject says I am for a program or a backup approach
 simillar to the one I am currently using. I boot with a Dos-Bootdisk and
 use Ghost to backup my Linux-Partitions to a FAT-Partition and then
 distribute the images around different computers on the network. I would
 like to be able to something like this with FreeBSD. I have had a look at
 Ghost 4 Unix but this is mainly oriented towards deploying images via the
 network while I just want to store the files locally. The advantage of Ghost
 and Ghost4Unix is that is is very easy to restore the system even if it so
 messed up that it wont boot. How can I do this ?
 
 
 Bye
 Stefan
 
 ___
 [EMAIL PROTECTED] mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to [EMAIL PROTECTED]
 
 ___
 [EMAIL PROTECTED] mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to [EMAIL PROTECTED]

 ___
 [EMAIL PROTECTED] mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to [EMAIL PROTECTED]


___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: .forward file

2003-07-09 Thread Vincent Poy
On 9 Jul 2003, Marvin J. Kosmal wrote:



 .forward file

 So I want to forward my mail from

 a box with the email as

 [EMAIL PROTECTED]

 to

 [EMAIL PROTECTED]

 So if I understand this the syntax would be ( in .forward)

 [EMAIL PROTECTED]:  [EMAIL PROTECTED]

 ???

 Yes/NO???

 TIA

No, it should just be the address per line:

[EMAIL PROTECTED]

would forward to only [EMAIL PROTECTED]

and

[EMAIL PROTECTED]
[EMAIL PROTECTED]

would forward to both [EMAIL PROTECTED] and [EMAIL PROTECTED]


Cheers,
Vince - [EMAIL PROTECTED] - Vice President    __ 
Unix Networking Operations - FreeBSD-Real Unix for Free / / / / |  / |[__  ]
WurldLink Corporation  / / / /  | /  | __] ]
San Francisco - Honolulu - Hong Kong  / / / / / |/ / | __] ]
HongKong Stars/Gravis UltraSound Mailing Lists Admin /_/_/_/_/|___/|_|[]
[EMAIL PROTECTED] - oahu.DAL.NET Hawaii's DALnet IRC Network Server Admin

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: libc.so.4

2003-07-08 Thread Vincent Poy
On Mon, 7 Jul 2003, Kris Kennaway wrote:

 On Mon, Jul 07, 2003 at 01:34:50AM -1000, Vincent Poy wrote:
  On Mon, 7 Jul 2003, Jun wrote:
 
   Hello there.
  
   Greetings!!!
  
   I would like to ask if how can I fix the error I always receive from my box 
   FreeBSD 5.0-p7 when i run any executable program such as gmake, httpd, etc.:
  
   gowee# gmake release
   /usr/libexec/ld-elf.so.1: Shared object libc.so.4 not found
   gowee#
  
   that's the error i always receive, i don't know if how can i fix it :( ... i try 
   to find if what particular library is the libc.so.4 but i got no.
  
   Thanks and More power.
  
   Jun
 
  You can try:
 
  ln -sf /usr/lib/libc.so /usr/lib/lib.so.4
 
  and then:
 
  ldconfig -elf -R

 Grr..that's not a solution at all.

 libc.so.4 is provided by the compat4x distribution and packages.
 Either add COMPAT4X=yes to /etc/make.conf and make world, install the
 compat4x distribution from sysinstall, or add the compat4x package.

 Kris

That's what I get for staying awake too many hours and trying to
provide help to someone.  I forgot completely about /usr/lib/compat but
follow Kris's instructions and it'll work.


Cheers,
Vince - [EMAIL PROTECTED] - Vice President    __ 
Unix Networking Operations - FreeBSD-Real Unix for Free / / / / |  / |[__  ]
WurldLink Corporation  / / / /  | /  | __] ]
San Francisco - Honolulu - Hong Kong  / / / / / |/ / | __] ]
HongKong Stars/Gravis UltraSound Mailing Lists Admin /_/_/_/_/|___/|_|[]
[EMAIL PROTECTED] - oahu.DAL.NET Hawaii's DALnet IRC Network Server Admin



___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: libc.so.4

2003-07-07 Thread Vincent Poy
On Mon, 7 Jul 2003, Jun wrote:

 Hello there.

 Greetings!!!

 I would like to ask if how can I fix the error I always receive from my box FreeBSD 
 5.0-p7 when i run any executable program such as gmake, httpd, etc.:

 gowee# gmake release
 /usr/libexec/ld-elf.so.1: Shared object libc.so.4 not found
 gowee#

 that's the error i always receive, i don't know if how can i fix it :( ... i try to 
 find if what particular library is the libc.so.4 but i got no.

 Thanks and More power.

 Jun

You can try:

ln -sf /usr/lib/libc.so /usr/lib/lib.so.4

and then:

ldconfig -elf -R


Cheers,
Vince - [EMAIL PROTECTED] - Vice President    __ 
Unix Networking Operations - FreeBSD-Real Unix for Free / / / / |  / |[__  ]
WurldLink Corporation  / / / /  | /  | __] ]
San Francisco - Honolulu - Hong Kong  / / / / / |/ / | __] ]
HongKong Stars/Gravis UltraSound Mailing Lists Admin /_/_/_/_/|___/|_|[]
[EMAIL PROTECTED] - oahu.DAL.NET Hawaii's DALnet IRC Network Server Admin

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


banners on tcpd (tcpwrappers)

2003-06-24 Thread Vincent Poy
Greetings everyone:

Does anyone know what needs to be done to the tcpd - tcp wrappers
to get banners to work?  Thanks.


Cheers,
Vince - [EMAIL PROTECTED] - Vice President    __ 
Unix Networking Operations - FreeBSD-Real Unix for Free / / / / |  / |[__  ]
WurldLink Corporation  / / / /  | /  | __] ]
San Francisco - Honolulu - Hong Kong  / / / / / |/ / | __] ]
HongKong Stars/Gravis UltraSound Mailing Lists Admin /_/_/_/_/|___/|_|[]
[EMAIL PROTECTED] - oahu.DAL.NET Hawaii's DALnet IRC Network Server Admin

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: banners on tcpd (tcpwrappers)

2003-06-24 Thread Vincent Poy
I'm referring to /usr/libexec/tcpd as in the TCP Wrappers which
relies on /etc/hosts.allow.  The environment is pretty much for anything
via terminal access and not via the web.  tcpwrappers used to be a port on
FreeBSD and that one when you edit the files would allow the banners to
work but the tcpd I have from the port would show banners to those allowed
in /etc/hosts.allow with the line:

telnetd,ftpd,rshd,rlogind : 216.235.52. : rfc931 : banners /etc/banners

but it will let people through without the banner for anyone not
allowed.  The tcpd in /usr/libexec/tcpd works correctly for access but it
doesn't display the banners.


Cheers,
Vince - [EMAIL PROTECTED] - Vice President    __ 
Unix Networking Operations - FreeBSD-Real Unix for Free / / / / |  / |[__  ]
WurldLink Corporation  / / / /  | /  | __] ]
San Francisco - Honolulu - Hong Kong  / / / / / |/ / | __] ]
HongKong Stars/Gravis UltraSound Mailing Lists Admin /_/_/_/_/|___/|_|[]
[EMAIL PROTECTED] - oahu.DAL.NET Hawaii's DALnet IRC Network Server Admin
On Tue, 24 Jun 2003, Stephen Hovey wrote:

 What do you mean by banners? and in what environment?  (You talking about
 ad banners on web pages? or something else)

 On Tue, 24 Jun 2003, Vincent Poy wrote:

  Greetings everyone:
 
  Does anyone know what needs to be done to the tcpd - tcp wrappers
  to get banners to work?  Thanks.
 
 
  Cheers,
  Vince - [EMAIL PROTECTED] - Vice President    __ 
  Unix Networking Operations - FreeBSD-Real Unix for Free / / / / |  / |[__  ]
  WurldLink Corporation  / / / /  | /  | __] ]
  San Francisco - Honolulu - Hong Kong  / / / / / |/ / | __] ]
  HongKong Stars/Gravis UltraSound Mailing Lists Admin /_/_/_/_/|___/|_|[]
  [EMAIL PROTECTED] - oahu.DAL.NET Hawaii's DALnet IRC Network Server Admin
 
  ___
  [EMAIL PROTECTED] mailing list
  http://lists.freebsd.org/mailman/listinfo/freebsd-questions
  To unsubscribe, send any mail to [EMAIL PROTECTED]
 



___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: 4.7-5.0, ran out of space on /

2003-01-22 Thread Vincent Poy
On Wed, 22 Jan 2003, Kirk R. Wythers wrote:

 I just ran into a problem trying to install the 5.0 world. I thought I
 checked and had 30M free on / before I started this. However, after
 building, the world, building the kernel, installing the kernel, running
 mergemaster -p, I went to install the world and got the error 'out of
 space on /'

 I need to find some room, but I'm a little nervous about what I can rm.
 Here is what I'm looking at:

 1)   / partition is 79M, 64M are used (I was almost sure there was
 more room than that on / before I satarted).
 2)   /tmp is on it's own partition
 3)   du -h on subdirectories breakdown like this.
   a.   18M /boot
   b.   1.4M /etc
   c.   3.7M /kernel
   d.   3.9M /kern.GENERIC
   e.   6M /modules
   f. 21M /sbin
   g.   2.1M /stand

 as you can see that pretty much accounts for it. The rest of the stuff
 is pretty small.

 I need to know if I can delete any of this stuff and still successfully
 do a 'make installworld'?

 Thanks,

 Kirk

 Ps... sorry about cross posting (I wasn't sure if 5-release qualified
 for the stable list)


/boot is something you need to keep since the kernel and the kernel
modules have all been moved to /boot in 5.0
/etc should stay too
/kernel
/kernel.GENERIC
/modules can all be deleted since these are now in /boot
/sbin
/stand
should stay


Cheers,
Vince - [EMAIL PROTECTED] - Vice President    __ 
Unix Networking Operations - FreeBSD-Real Unix for Free / / / / |  / |[__  ]
WurldLink Corporation  / / / /  | /  | __] ]
San Francisco - Honolulu - Hong Kong  / / / / / |/ / | __] ]
HongKong Stars/Gravis UltraSound Mailing Lists Admin /_/_/_/_/|___/|_|[]
Almighty1@IRC - oahu.DAL.NET Hawaii's DALnet IRC Network Server Admin


To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message



Re: FreeBSD and Verizon DSL

2002-09-27 Thread Vincent Poy

On Thu, 26 Sep 2002, Alexander Kabaev wrote:

 On Thu, 26 Sep 2002 16:20:19 -0400
 Louis LeBlanc [EMAIL PROTECTED] wrote:

  Is PPP setup required?  AFAIK, Verizon doesn't require an
  authname/authkey challenge, since it logs the Mac Address of the NIC,
  as well as the modem itself.  I haven't been using PPP with ATT for
  the last 4+ years, and it works well.
 
  TIA
  Lou

 It is possible that the service Verizon provides in your area is
 different than one they privide here. Here Verizon DSL uses PPPoE and
 ppp is definitely requited to connect.

The way it works is the the Verizon known as BellAtlantic requires
PPPoE while the Verizon known as GTE doesn't.  BA uses a ATM network while
GTE uses a Frame Relay based network.


Cheers,
Vince - [EMAIL PROTECTED] - Vice President    __ 
Unix Networking Operations - FreeBSD-Real Unix for Free / / / / |  / |[__  ]
WurldLink Corporation  / / / /  | /  | __] ]
San Francisco - Honolulu - Hong Kong  / / / / / |/ / | __] ]
HongKong Stars/Gravis UltraSound Mailing Lists Admin /_/_/_/_/|___/|_|[]
Almighty1@IRC - oahu.DAL.NET Hawaii's DALnet IRC Network Server Admin


To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message



Re: FreeBSD and Verizon DSL

2002-09-27 Thread Vincent Poy

You can usually tell from the modem you're using.  The GTE one is
a Fujitsu/Orkit and uses DHCP.  The BellAtlantic one uses modems from
Efficient Networks/Siemens, Westell and Alcatel and uses PPPoE.  What was
the name of the telco before it was Verizon, that's one way to tell.


Cheers,
Vince - [EMAIL PROTECTED] - Vice President    __ 
Unix Networking Operations - FreeBSD-Real Unix for Free / / / / |  / |[__  ]
WurldLink Corporation  / / / /  | /  | __] ]
San Francisco - Honolulu - Hong Kong  / / / / / |/ / | __] ]
HongKong Stars/Gravis UltraSound Mailing Lists Admin /_/_/_/_/|___/|_|[]
Almighty1@IRC - oahu.DAL.NET Hawaii's DALnet IRC Network Server Admin


On Fri, 27 Sep 2002, Louis LeBlanc wrote:

 Now I'm getting confused.  I guess I'll have to be ready to set either
 one up.


 Thanks for the info guys.

 Lou

 On 09/26/02 09:52 PM, Vincent Poy sat at the `puter and typed:
  On Thu, 26 Sep 2002, Alexander Kabaev wrote:
 
   On Thu, 26 Sep 2002 16:20:19 -0400
   Louis LeBlanc [EMAIL PROTECTED] wrote:
  
Is PPP setup required?  AFAIK, Verizon doesn't require an
authname/authkey challenge, since it logs the Mac Address of the NIC,
as well as the modem itself.  I haven't been using PPP with ATT for
the last 4+ years, and it works well.
   
TIA
Lou
  
   It is possible that the service Verizon provides in your area is
   different than one they privide here. Here Verizon DSL uses PPPoE and
   ppp is definitely requited to connect.
 
  The way it works is the the Verizon known as BellAtlantic requires
  PPPoE while the Verizon known as GTE doesn't.  BA uses a ATM network while
  GTE uses a Frame Relay based network.
 
 
  Cheers,
  Vince - [EMAIL PROTECTED] - Vice President    __ 
  Unix Networking Operations - FreeBSD-Real Unix for Free / / / / |  / |[__  ]
  WurldLink Corporation  / / / /  | /  | __] ]
  San Francisco - Honolulu - Hong Kong  / / / / / |/ / | __] ]
  HongKong Stars/Gravis UltraSound Mailing Lists Admin /_/_/_/_/|___/|_|[]
  Almighty1@IRC - oahu.DAL.NET Hawaii's DALnet IRC Network Server Admin
 
 




To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message



Re: FreeBSD and Verizon DSL

2002-09-27 Thread Vincent Poy

I thought there were some GTE territories on the east coast as
well.  Not all Verizon West territories have the ATM yet since the FR
networks can be at a minimum of T1 speed but the ATM requires atleast a
DS3.  In Hawaii, 90% of the DSLAM's are still FR.


Cheers,
Vince - [EMAIL PROTECTED] - Vice President    __ 
Unix Networking Operations - FreeBSD-Real Unix for Free / / / / |  / |[__  ]
WurldLink Corporation  / / / /  | /  | __] ]
San Francisco - Honolulu - Hong Kong  / / / / / |/ / | __] ]
HongKong Stars/Gravis UltraSound Mailing Lists Admin /_/_/_/_/|___/|_|[]
Almighty1@IRC - oahu.DAL.NET Hawaii's DALnet IRC Network Server Admin

On Sun, 27 Oct 2002, David wrote:

The way it works is the the Verizon known as BellAtlantic requires
PPPoE while the Verizon known as GTE doesn't.  BA uses a ATM network
 while
GTE uses a Frame Relay based network.

 Verizon West formerly known as GTE used to use only Frame Relay. They are
 now using both Frame Relay and ATM. This applies to both Static and DHCP.
 The customers using DHCP use PPPoE all Static customers use PPP.

 Verizon East formerly known as Bell Atlantic only uses ATM and only has DHCP
 service. All East customers require PPPoE

 David H.
 VOL Escalations


 To Unsubscribe: send mail to [EMAIL PROTECTED]
 with unsubscribe freebsd-questions in the body of the message



To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message