|
Post Number: 1
|
|
Post Number: 2
|
|
Post Number: 3
|
|
Post Number: 4
|
|
Post Number: 5
|
|
Post Number: 6
|
damien_s_lucifer
Emperor of Detnet
Group: Members
Posts: 33
Joined: Jan. 1970
|
|
Posted on: Dec. 19 2001,00:05 |
|
|
I tracked it down to TCP wrappers... yanked 'em off my IMAP server.
Everyone who had an account was bitch0ring about slow email... they're all happy now
|
|
|
|
Post Number: 7
|
incubus
mack daddy
Group: Admins
Posts: 1316
Joined: May 2000
|
|
Posted on: Dec. 19 2001,02:11 |
|
|
Quote (damien_s_lucifer @ Dec. 19 2001,00:05) | I tracked it down to TCP wrappers... yanked 'em off my IMAP server.
Everyone who had an account was bitch0ring about slow email... they're all happy now |
Wicked! I was right! w00t
-------------- Quit your job. Start a fight. Prove you're alive. If you don't claim your humanity you will become a statistic. You have been warned ....... Tyler
|
|
|
|
Post Number: 8
|
aventari
Unregistered
|
|
Posted on: Dec. 19 2001,06:40 |
|
|
So what to tcpwrappers do? All my redhat 6.2 boxes do the same shit at work, and i'd like to fix it. But if I pull tcpwrappers whats the downside?
[W00tar! forums be back!]
av
|
|
|
|
Post Number: 9
|
damien_s_lucifer
Emperor of Detnet
Group: Members
Posts: 33
Joined: Jan. 1970
|
|
Posted on: Dec. 20 2001,00:49 |
|
|
TCP wrappers allow you to control access to Internet services by IP address / subnet / domain.
For example, I have telnet open on my machine, but it only allows connections from my LAN. Outside of my house you have to use SSH. This is great for Telnet, but kind of stupid for email where you usually want world access.
To disable TCP wrappers on a service, you need to edit /etc/inetd.conf. Back it up first - last thing you want is for a bad config file to kill inetd and you can't get it restarted.
You'll need to be root to do this :
Open /etc/inetd.conf in an editor and find the line for the service you want to modify. Here's an example of an entry for POP3 :
Code Sample | pop3 stream tcp nowait root /usr/sbin/tcpd gnu-pop3d |
To remove TCP wrappers from this service, you need to yank out tcpd and have inetd call gnu-pop3d directly:
Code Sample | pop3 stream tcp nowait root /usr/sbin/gnu-pop3d |
Save the file and restart inetd with
killall -HUP inetd
and that's it... no more TCP wrappers on that service.
I left them on Telnet, though. I can wait 20 seconds to open a Telnet session. It was the slow email that pissed me off.
|
|
|
|
Post Number: 10
|
Spydir
proof that humans suck (www.netsyndrome.net)
Group: Members
Posts: 1089
Joined: Apr. 2001
|
|
Posted on: Dec. 21 2001,03:15 |
|
|
ok... I can't wait 20 seconds for putty to ssh into my linux box. Well I can, but I don't want to. I followed what you said, and it still does that crap. Any idea?
-------------- Net Syndrome - www.netsyndrome.net
Catch The Sickness
|
|
|
|
|