For some reason, my port 1645 is closed on FreeBSD 6.2. I have all the firewall disabled, but it's not allowing me access the port 1645. How do you manually open this port? I can't seem to find at google.
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Hi, If you are running Radius see /etc/services. Ports used by Radius are 1812/1813. Squirrel wrote:> For some reason, my port 1645 is closed on FreeBSD 6.2. I have all the firewall disabled, but it's not allowing me access the port 1645. How do you manually open this port? I can't seem to find at google. > _______________________________________________ > freebsd-stable@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-stable > To unsubscribe, send any mail to "freebsd-stable-unsubscribe@freebsd.org" >-----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.7 (FreeBSD) iD8DBQFHHEeMxJBWvpalMpkRApn9AJ456a7oaf1tkeBI8vG8O7mkcyZ0oACbBhf9 xm+MZNPRW0XHWCsppPJnWXo=84ZA -----END PGP SIGNATURE-----
On Sun, 21 Oct 2007, Squirrel wrote: > For some reason, my port 1645 is closed on FreeBSD 6.2. I have all > the firewall disabled, but it's not allowing me access the port 1645. > How do you manually open this port? I can't seem to find at google. I suspect this belongs over on freebsd-questions, but .. What sort of service are you running on port 1645? TCP or UDP? Provide some information about what you're trying to do. Try showing (rather than telling) what you've attempted and what results you get. Cheers, Ian
----- "Squirrel" <squirrel@mail.isot.com> wrote:> For some reason, my port 1645 is closed on FreeBSD 6.2. I have all > the firewall disabled, but it's not allowing me access the port 1645. > How do you manually open this port? I can't seem to find at google.You also need to have something listening on that port for it to be open. 1645 is (old) RADIUS, which operates over UDP, which means you can't test with telnet either. Tom
Squirrel wrote:> For some reason, my port 1645 is closed on FreeBSD 6.2. I have all the firewall disabled, but it's not allowing me access the port 1645. How do you manually open this port? I can't seem to find at google.You need to configure an application to listen on the port.
Squirrel wrote:> For some reason, my port 1645 is closed on FreeBSD 6.2. I have all the firewall disabled, but it's not allowing me access the port 1645. How do you manually open this port? I can't seem to find at google.FreeBSD does nothing special here. If you are sure you have an application listening on this port (check sockstat) then it is being filtered somewhere in between you and the machine you are trying to check from. Kris
Hi Squirrel (odd name that is...), On Sun, 21 Oct 2007 14:54:53 -0500, Squirrel <squirrel@mail.isot.com> wrote:> For some reason, my port 1645 is closed on FreeBSD 6.2. I have all the > firewall disabled, but it's not allowing me access the port 1645. How do > you manually open this port? I can't seem to find at google.What exactly is your question? You need a daemon listening on port 1645. By the way, tcp or udp port 1645? What is the "sockstat -4 | grep 1645" ? If there's no output at all, then no daemon is listening on port 1645, which also means you don't get a connection to 1645. According to /etc/services: [mhettwer@blowfish] <~>grep 1645 /etc/services [10:37:36 on 07-10-22] # IMPORTANT NOTE: Ports 1645/1646 are the traditional radius ports used by #radius 1645/udp #RADIUS authentication protocol (old) # IMPORTANT NOTE: See comments for ports 1645/1646 when using older equipment [mhettwer@blowfish] <~> Do you want to run a radius server? regards, Marian