0
LinuxマシンとWindowsマシンのソケット接続をセットアップできません クライアントが接続を受け付けていない理由がわかりません。クライアント私は何が問題なのかわからない 私はホストを取得するためにさまざまな方法を試してみましたが、このコードはLinux OSからLinux OSへは動作しますが、LinuxからWindowsへ、あるいはその逆では動作しませんでした。WindowsとLinux間のPythonソケット接続
サーバコード:
import os #importing the os module
import socket #importing the socket module
store_folder = "socket_info7" # assigning the variable store_folder to the value "socket_info"
os.mkdir(store_folder) #using the variable value to make a folder named socket_info
os.chdir(store_folder) # changing the directory to socket_info
store_file = store_folder+" 1"
store_file = open(store_file,"a") # make a file named socket_info
s= socket.socket() # making a socket object
host = socket.gethostname()
port = 5000
s.bind((host,port))
s.listen(1)
while True:
c,addr = s.accept()
user_input = raw_input("write")
c.send(user_input)
if user_input == "q":
break
s.close()
クライアントコード:そこ
#!/usr/bin/python # This is server.py file
import socket # Import socket module
s = socket.socket() # Create a socket object
host = socket.gethostname() # Get local machine name
port = 5000 # Reserve a port for your service.
s.bind((host, port)) # Bind to the port
s.listen(5) # Now wait for client connection.
while True:
c, addr = s.accept() # Establish connection with client.
print 'Got connection from', addr
c.send('Thank you for connecting')
c.close() # Close the connection
このコードは、接続を確立しておらず、異なるポートの2つのサーバーを起動しているように見えるため、どのマシンのペアでも機能しない可能性があります。 – JohanL
ファイアウォールでブロックされていますか? –