snwagh / falcon-public

Implementation of protocols in Falcon
90 stars 46 forks source link

"Not managing to connect" problem when running using LAN #39

Open khoaguin opened 2 years ago

khoaguin commented 2 years ago

Hi, I am trying to run the experiments on the LAN setting to reproduce the results in the Table 4 of the paper. I have changed the appropriate settings in makefile. I have also changed the IP addresses in files/IP_LAN and god. However, I always got the error "Not managing to connect" after running make command, like in the picture attached. Thank you very much. Screenshot from 2022-05-24 11-03-48

snwagh commented 2 years ago

There seems to be some networking issue.

khoaguin commented 2 years ago

Hi, thank you for the reply. I have checked and I can ping the machines from one another. The IP addresses are also public. Regarding the ports, what are the relevant ports that I should relax?

snwagh commented 2 years ago

32000-32100 should be a good range. One other thing that might be the issue here since these are servers running on each party, the ports are binding. So when you run the code, you might want to check if any Falcon.out processes are running (you can terminate them by the bash command pkill Falcon.out).

khoaguin commented 2 years ago

Thank you very much, Sameer