Gentoo Forums
Gentoo Forums
Gentoo Forums
Quick Search: in
server linux e client windows...come fare?
View unanswered posts
View posts from last 24 hours
View posts from last 7 days

 
Reply to topic    Gentoo Forums Forum Index Forum italiano (Italian)
View previous topic :: View next topic  
Author Message
shun
n00b
n00b


Joined: 22 Mar 2005
Posts: 62

PostPosted: Thu Apr 28, 2005 6:49 am    Post subject: server linux e client windows...come fare? Reply with quote

ciao ragazzi io faccio da server con la mia gentoo ad altri 2 pc collegati in rete locale alla connessione internet che io condivido; se io volessi aprire delle porte per far accedere dei loro programmialla rete come dovrei fare?
grazie anticipatamente sHuN
Back to top
View user's profile Send private message
gutter
Bodhisattva
Bodhisattva


Joined: 13 Mar 2004
Posts: 7162
Location: Aarau, Aargau, Switzerland

PostPosted: Thu Apr 28, 2005 7:03 am    Post subject: Reply with quote

In pratica quello che stai facendo per ora è nattare una rete privata.

Per fare quello che chiedi devi usare iptables, ci sono varie guide a riguardo, basta cercare con goggle.
_________________
Registered as User #281564 and Machines #163761
Back to top
View user's profile Send private message
neryo
Veteran
Veteran


Joined: 09 Oct 2004
Posts: 1292
Location: Ferrara, Italy, Europe

PostPosted: Thu Apr 28, 2005 8:32 am    Post subject: Reply with quote

Usi iptables come ti ha detto gutter.. c'e' una buona guida sul wiki di gentoo

http://gentoo-wiki.com/HOWTO_Iptables_for_newbies
_________________
cache: a safe place for hiding or storing things..

D-link DWL-G650 AirPlus
Apache Php Mysql
Back to top
View user's profile Send private message
shun
n00b
n00b


Joined: 22 Mar 2005
Posts: 62

PostPosted: Thu Apr 28, 2005 11:19 am    Post subject: Reply with quote

io le iptables le ho gia attive,infatti la connessione è gia condivisa...solo che in alcuniprogrammi di p2p occorre che alcune porte siano aperte,e non so come fare!non so se mi sono fatto capire...
Back to top
View user's profile Send private message
Cazzantonio
Bodhisattva
Bodhisattva


Joined: 20 Mar 2004
Posts: 4514
Location: Somewere around the world

PostPosted: Thu Apr 28, 2005 11:41 am    Post subject: Reply with quote

cioè hai impostato un firewall con iptables e non sai come funziona? 8O
ti consiglio di togliere il firewall :wink:
_________________
Any mans death diminishes me, because I am involved in Mankinde; and therefore never send to know for whom the bell tolls; It tolls for thee.
-John Donne
Back to top
View user's profile Send private message
shun
n00b
n00b


Joined: 22 Mar 2005
Posts: 62

PostPosted: Thu Apr 28, 2005 11:58 am    Post subject: Reply with quote

allora,iptables le ho configurate in modo ke gli ip collegati a me ke vanno da 192.168.0.1 e 192.168.0.24 non hanno restrizioni,ma i programmi di p2p su win non vanno,bisognerebbe ke aprissi le porte del programma...
Back to top
View user's profile Send private message
Josuke
Veteran
Veteran


Joined: 07 May 2003
Posts: 1175
Location: Italy - Bolzano

PostPosted: Thu Apr 28, 2005 12:04 pm    Post subject: Reply with quote

mmm quello che ti serve è un forwarding delle porte dei p2p...mettiamo caso che il programma p2p usi le porte da 8001 a 8101 devi con iptables forwardare le queste porte in modo che ogni richiesta venga reindirizzata al pc con il p2p...questo si può fare tranquillamente con iptables basta leggersi una guida
_________________
fletto i muscoli...e sono nel vuoto
Back to top
View user's profile Send private message
Cazzantonio
Bodhisattva
Bodhisattva


Joined: 20 Mar 2004
Posts: 4514
Location: Somewere around the world

PostPosted: Thu Apr 28, 2005 5:23 pm    Post subject: Reply with quote

Se quello che vuoi fare è un natting tra ppp0 (o altra interfaccia connessa a internet) e eth0 (o altra interfaccia connessa alla lan) non ti basta una cosa del genere? (questo è il mio script per l'ip masquerading....)
Code:
iptables -F; iptables -t nat -F; iptables -t mangle -F

#questa riga è per un ip statico (eth0 non dhcp)
iptables -t nat -A POSTROUTING -o eth0 -j SNAT --to 192.168.1.1

#quesyta riga è per un indirizzo dinamico (ppp0)
#iptables -t nat -A POSTROUTING -o ppp0 -j MASQUERADE

echo 1 > /proc/sys/net/ipv4/ip_forward
iptables -A INPUT -m state --state ESTABLISHED,RELATED -j ACCEPT
iptables -A INPUT -m state --state NEW -i ! ppp0 -j ACCEPT
iptables -P INPUT DROP

_________________
Any mans death diminishes me, because I am involved in Mankinde; and therefore never send to know for whom the bell tolls; It tolls for thee.
-John Donne
Back to top
View user's profile Send private message
Display posts from previous:   
Reply to topic    Gentoo Forums Forum Index Forum italiano (Italian) All times are GMT
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum