IP acces

denni

New member
Joined
Jan 9, 2007
Messages
4
Hi,
I have phrehaps a good idea
Can't you make that only one or selected ip's can log in @ direct admin, FTP and DB, if you dont want that that you can just put it off. That's hackersafe isn't it?

Greetz,
Denni
 
yes but isn't it better to do it too with directadmin?
If you dont have a own server,(i have 1;)) and your host hasn't a firewall like that
 
iptables. If just ip 1.2.3.4 is allowed to access the DA control panel, use this rule:

/sbin/iptables -t filter -A INPUT -p tcp --dport 2222 -j DROP
/sbin/iptables -t filter -A INPUT -p tcp --dport 2222 -s 1.2.3.4 -j ACCEPT
 
Back
Top