-
Meta
Tags
TS Status
TEAMSPEAK.kulish.com 
Lobby 

Demon Hunters 
Eve 
AFK 

LotRO 
SWTOR GameSpace
SANS- Infocon: green
- PHP 5.4 Remote Exploit PoC in the wild, (Sat, May 19th) May 19, 2012
- ZTE Score M Android Phone backdoor, (Fri, May 18th) May 18, 2012
- ISC StormCast for Friday, May 18th 2012 http://isc.sans.edu/podcastdetail.html?id=2545, (Fri, May 18th) May 18, 2012
- ISC Feature of the Week: Tools->Information Gathering, (Thu, May 17th) May 17, 2012
Steam
Tag Archives: IP
Block Incoming IP Using dd-wrt (iptables)
While reviewing logs on the email server I noticed 112.121.136.26 trying to authenticate via SASL.
This is not a normal IP that would be relaying email through the server, so I decided to block it at the firewall.
Undoubtedly, someone was trying to relay spam, whether they were aware or not.
First, I logged into my firewall via ssh to get a rule in place immediately:
iptables -I CHAIN -s 112.121.136.26 -j DROP
Listing the rules:
iptables -L --line-number
1 DROP 0 -- ppp-112.121.136.26.revip.proen.co.th anywhere
Shows the new rule at the top of the chain. Exactly where I need it.
Solaris 10 Change IP/Network/Hostname
I seem to be searching and using the same google result a bunch lately. So here it is:
Changing the IP on Solaris 10 requires editing two files:
1. /etc/hosts
2. /etc/inet/ipnodes
3. /etc/netmasks (if subnet mask needs changing)
If you are changing network address, you will need to change the router address in the file:
1. /etc/defaultrouter
Changing the hostname now only requires editing these files:
1. /etc/hosts
2. /etc/nodename
3. /etc/hostname.”interface name”
hostname “hostname” (change until you can reboot)
Thanks to shiv729 at devshed.
Original forum post:
http://forums.devshed.com/unix-help-35/changing-hostname-and-ip-on-solaris-10t-343047.html
Binding IP’s to NICs in Debian
So, say you want one of your Debian based servers to listen on more than 1 IP address. Heres a quick and dirty example of how to do this.
This may or may not be the correct way to do this, but it works on my machines.
Adding an IP to eth0 (usually the default)
If you look in your /etc/network/interfaces file you should see something like this:
auto eth0
iface eth0 inet static
address 192.168.0.1
netmask 255.255.255.0
network 192.168.0.0
broadcast 192.168.0.255
gateway 192.168.0.254