FreeBSD kernel pppd - mppe/mschapv1/2/radius support

2004-11-26 Thread Anthony Volodkin
Hi, After extensively googling FreeBSD pppd's support for mppe, mschapv1, mschapv2 and radius, I've stumbled into a mess of patches for very random versions of pppd and FreeBSD. Does anyone have a running setup of FreeBSD's pppd with support for these features, or perhaps a patch that encompasses

Re: IPFW2 matching a list/set of interfaces

2004-11-11 Thread Anthony Volodkin
That seems to work, thanks a lot! -Anthony Volodkin On Thu, 11 Nov 2004, Mihail Balikov wrote: ipfw add allow ip from any to 192.168.100.100 { via fxp0 or via ng0 or via xl0 } > > > - Original Message - > From: "Anthony Volodkin" <[EMAIL PROTECTED]> >

IPFW2 matching a list/set of interfaces

2004-11-11 Thread Anthony Volodkin
I use an or block, i get an error about an invalid or block. Does anyone know whether this is actually possible/supported/supported in the near future? Sure I could make a rule for each interface, but in my situation that would not scale well. Thanks, Anthony Vol

Re: NATD and available ports

2004-01-12 Thread Anthony Volodkin
Hey, Just curious, but why do you need to use NAT with 2000 clients and that many connections/traffic? Surely there might be another solution. -Anthony On Mon, 12 Jan 2004, Barney Wolff wrote: > On Mon, Jan 12, 2004 at 05:45:39PM +0200, Andriy Korud wrote: > > Hi. > > I need to run nat box for

Re: (revised) 4.0-stable & Linksys WRT54G won't talk w/each other

2004-01-10 Thread Anthony Volodkin
Hey, Apparently the WRT54G is having some arp issues. I'd check the following: - install latest firmware - install Ethereal on the windows machine and watch the traffic exchange when you would ping/access the WRT54G. It is important that this is done right after boot so that the Windows machin

Re: (revised) 4.0-stable & Linksys WRT54G won't talk w/each other

2004-01-09 Thread Anthony Volodkin
Hey, Apparently the WRT54G is having some arp issues. I'd check the following: - install latest firmware - install Ethereal on the windows machine and watch the traffic exchange when you would ping/access the WRT54G. It is important that this is done right after boot so that the Windows machin

Re: mpd vpn

2003-12-12 Thread Anthony Volodkin
Hey, Could it be that the gre packets are dropped somewhere along the way? It seems as if after authenticating, mpd attempts to setup the GRE session, not receiving responses to it's requests. I've encountered this a few times with a few cable connections and school firewalls. In that case the

Re: routing a broadcast over a gif tunnel

2003-04-12 Thread Anthony Volodkin
Peter J. Blok wrote: Hi, I need to fool a PC package. The package is searching for a server responding to a broadcast on port 56415. That server is across an ipsec/gif tunnel. How can I bridge that particular packet towards the segment at the other end. I have tried various ipfw fwd rules and

Re: options FAST_IPSEC & tunnels

2003-04-02 Thread Anthony Volodkin
oesnt work exactly as it appears. I can send you my PIX/racoon configs if you want. Anthony Volodkin Eric Masson wrote: "Lars" == Lars Eggert <[EMAIL PROTECTED]> writes: Hello Lars, Lars> what's a pix? A firewall appliance from cisco : http://www.cisco.c

mpd bridging

2003-02-15 Thread Anthony Volodkin
ied ng0-3 interfaces. I found a sample script that is supposed to establish netgraph bridging between the specified interfaces, however, that fails to work. Regards, Anthony Volodkin To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-net" in the body of the message

Re: still troubles with MPD and WinXP

2003-02-13 Thread Anthony Volodkin
Sergey Matveychuk wrote: I still a troubles with MPD (now 3.12) and WinXP. Slow and bad connection :( set iface mtu 1400 doesn't help. I'v tried poptop from ports. Works fine but disconnect me when connection idle for a few minutes and doesn't connect till I'v killed pptpd and restart it. In y

MPD and Cisco PIX

2003-01-26 Thread Anthony Volodkin
Hi, Earlier today, I was attempting to connect a Cisco 515 firewall with a Freebsd 4.7-STABLE machine with PPTP using MPD 3.10. It appears that while the session is established properly, I cannot send/receive any packets. Then the session seems to time out because neither side is able to sen

Re: Linux <-> FreeBSD ipip/gre tunnel

2002-10-04 Thread Anthony Volodkin
where a FreeBSD 4.6.2-RELEASE machine was the server, and Linux 2.4.* machines were clients. I used ppp on the server side and a patched pppd / kernel on the client side. I used mppe encryption so I had to patch the linux kernel and the ppp daemon under linux for mppe support. There was also a MSCHAPv

Re: problems with mpd as a pptp server

2002-06-30 Thread Anthony Volodkin
- Thanks everyone! Anthony Volodkin srgtd wrote: >hi there, > >Do you see the service 'listening' using the following command: > ># netstat -a >Active Internet connections (including servers) >Proto Recv-Q Send-Q Local Address Foreign Address(s

problems with mpd as a pptp server

2002-06-29 Thread Anthony Volodkin
set link type pptp set pptp self 24.152.7.133 set pptp enable incoming set pptp disable originate -- Anthony Volodkin To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-net" in the body of the message

Re: Forwarding UDP packets

2002-06-27 Thread Anthony Volodkin
not exist, even though it was up and running. Any more clues on forwarding packets with destination 255.255.255.255 across interfaces are welcome. -Anthony Volodkin >Try use mpd >it does proxy arp and handles some broadcast features I believe. > > > >On Wed, 26 Jun 2002, Ant

Re: Forwarding UDP packets

2002-06-26 Thread Anthony Volodkin
2 and the relevant portion of ppp.conf: pptp: enable chap enable proxy set ifaddr 192.168.1.100 192.168.2.200-192.168.2.205 255.255.255.0 >what method of doing pptp are you using? > > >On Wed, 26 Jun 2002, Anthony Volodkin wrote: > > > >>Hi, >> >>Recently I&#

Forwarding UDP packets

2002-06-26 Thread Anthony Volodkin
edirects"); @@ -1684,7 +1688,8 @@ } error = ip_output(m, (struct mbuf *)0, &ipforward_rt, - IP_FORWARDING, 0); + IP_FORWARDING| + (ipforward_broadcast?IP_ALLOWBROADCAST:0), 0); if (error) ipstat.ips_cantforward++; else { -- Anthony Volodkin To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-net" in the body of the message