http://bugs.winehq.org/show_bug.cgi?id=2655
Summary: Wine see only loopback interface Product: Wine Version: 20041019 Platform: PC OS/Version: Linux Status: UNCONFIRMED Severity: normal Priority: P2 Component: wine-net AssignedTo: wine-bugs@winehq.org ReportedBy: mc@paycash.ru
After emerging WINE on my Gentoo box, i've tried to run Delphi written application that provides some network client-server functionality as: 1) listening some port on local machine 2) sending data to another machines
But the Wine only sees the loopback interface(127.0.0.1), other network interfaces such as eth0(192.168.0.75) are not visible from this application. Application can listen any port on 127.0.0.1 but cann't send data to remote hosts. On the windows this app shows all the network interfaces present on the system in a popup menu, but on wine this popup menu contains only the 127.0.0.1
Firewall is disabled - I can telnet from console all the IP addreses and ports that application is trying to communicate.
# netstat -na|grep tcp tcp 0 0 127.0.0.1:8129 0.0.0.0:* LISTEN tcp 0 0 0.0.0.0:7000 0.0.0.0:* LISTEN
Seems that application correctly binded to those ports but it cann't send data to the network and don't see other interfaces present on the system.