Pureh@te, I updated the kernel on both boxes and stopped the firewall as you suggested:
indexical(192.168.1.100)
Code:
root@indexical:~# uname -a
Linux indexical 2.6.30.9 #1 SMP Tue Dec 1 21:51:08 EST 2009 i686 GNU/Linux
root@indexical:~# ifconfig eth0 inet 192.168.1.100
root@indexical:~# ufw disable
Firewall stopped and disabled on system startup
root@indexical:~# iptables -F
root@indexical:~# iptables -X
root@indexical:~# iptables -t nat -F
root@indexical:~# iptables -t nat -X
root@indexical:~# iptables -t mangle -F
root@indexical:~# iptables -t mangle -X
root@indexical:~# iptables -P INPUT ACCEPT
root@indexical:~# iptables -P FORWARD ACCEPT
root@indexical:~# iptables -P OUTPUT ACCEPT
serve(192.168.1.101)
Code:
root@serve:~# uname -a
Linux serve 2.6.30.9 #1 SMP Tue Dec 1 21:51:08 EST 2009 i686 GNU/Linux
root@serve:~# ifconfig eth0 inet 192.168.1.101
root@serve:~# ufw disable
Firewall stopped and disabled on system startup
root@serve:~# iptables -F
root@serve:~# iptables -X
root@serve:~# iptables -t nat -F
root@serve:~# iptables -t nat -X
root@serve:~# iptables -t mangle -F
root@serve:~# iptables -t mangle -X
root@serve:~# iptables -P INPUT ACCEPT
root@serve:~# iptables -P FORWARD ACCEPT
root@serve:~# iptables -P OUTPUT ACCEPT
Then I run the commands for serve(192.168.1.101) to act like server:
Code:
root@serve:~# pyrit selftest
Pyrit 0.2.5-dev (svn r199) (C) 2008-2010 Lukas Lueg http://pyrit.googlecode.
This code is distributed under the GNU General Public License v3+
Cores incorporated in the test:
#1: 'CPU-Core (SSE2)'
#2: 'Network-Clients'
Running selftest...
All results verified. Your installation seems OK.
root@serve:~# pyrit serve
Pyrit 0.2.5-dev (svn r199) (C) 2008-2010 Lukas Lueg http://pyrit.googlecode.com
This code is distributed under the GNU General Public License v3+
Serving 0 active clients; 0 PMKs/s; 0.0 TTS
Then I switched to indexical(192.168.1.100):
Code:
root@indexical:~# pyrit list_cores
Pyrit 0.2.5-dev (svn r199) (C) 2008-2010 Lukas Lueg http://pyrit.googlecode.com
This code is distributed under the GNU General Public License v3+
The following cores seem available...
#1: 'CPU-Core (SSE2)'
#2: 'Network-Clients'
As you can see serve(192.168.1.101) is still not reconized and then I checked with nmap for open port (on serve pyrit was still running):
Code:
root@indexical:~# nmap -sS -p19935 192.168.1.101
Starting Nmap 5.00 ( http://nmap.org ) at 2010-01-07 00:05 EET
Interesting ports on 192.168.1.101:
PORT STATE SERVICE
19935/tcp closed unknown
MAC Address: 08:00:27:76:4C:60 (Cadmus Computer Systems)
Nmap done: 1 IP address (1 host up) scanned in 14.07 seconds
Is there anything else I shoud check? I stopped ufw(which uses iptables) and I independently used iptables too, did I missed something?