[SOLVED] Re: UDP multicast packets not seen on listening interface in BETA5
From: Josh Carroll (josh.carroll_at_gmail.com)
Date: 09/30/05
- Previous message: Josh Carroll: "Re: UDP multicast packets not seen on listening interface in BETA5"
- In reply to: Josh Carroll: "Re: UDP multicast packets not seen on listening interface in BETA5"
- Next in thread: Robert Watson: "Re: [SOLVED] Re: UDP multicast packets not seen on listening interface in BETA5"
- Reply: Robert Watson: "Re: [SOLVED] Re: UDP multicast packets not seen on listening interface in BETA5"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Date: Thu, 29 Sep 2005 22:07:54 -0700 To: freebsd-current@freebsd.org
I'm sorry for so many replies to my own thread here, but I figured out
my problem. You guys were right, I was not properly joining the
multicast group. The packets were binding to my default IP instead of
192.168.1.1. Doing the following with pf fixed it:
nat on $ext_if from any to 224.0.0.0/8 -> 192.168.1.1
I don't really understand why this wasn't necessary in 5.4 and
previous 6.0 BETAs, but I'm glad it's working.
I tried changing the code from:
thishost.sin_addr.s_addr = INADDR_ANY;
to:
inet_aton("192.168.1.1", &local_addr);
server.sin_addr.s_addr = local_addr.s_addr;
Where 192.168.1.1 is one of the aliased IPs on fxp0, but when I try to
run the code, I get "Permission denied" from sendto(), even with pf
disabled.
Ideally, I'd like to update the code to search the local interfaces
with SIOCGIFCONF and use that IP (if available), but testing it with
my IP hard-coded doesn't seem to work.
But debugging my code is outside the scope of this mailing list. :)
Thanks for the help and getting me pointed in the right direction. I'm
ok with nat'ing the packets for now to make it work. I'll debug things
myself and see if I can't get it to use the right source address
itself.
Josh
_______________________________________________
freebsd-current@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to "freebsd-current-unsubscribe@freebsd.org"
- Previous message: Josh Carroll: "Re: UDP multicast packets not seen on listening interface in BETA5"
- In reply to: Josh Carroll: "Re: UDP multicast packets not seen on listening interface in BETA5"
- Next in thread: Robert Watson: "Re: [SOLVED] Re: UDP multicast packets not seen on listening interface in BETA5"
- Reply: Robert Watson: "Re: [SOLVED] Re: UDP multicast packets not seen on listening interface in BETA5"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Relevant Pages
|