Goed, netmeeting achter een NAT firewall gaat dus WEL werken. Alleen op dit moment alleen nog met de kernel 2.2.x reeks.
hier staat een masq module voor netmeeting. Let wel dat er een groot verschil is tussen netmeeting 3.01 en dat klere ding van windows messenger. Die komt nl niet door de module heen. Een eventuele andere **Makkelijkere, maar alleen voor 1 pc realiseerbaar** oplossing is het volgende scriptje:
code:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
| #!/bin/bash
# The aim of this simple script is to create a
# static redirection
# for msm filetransfer and Netmeeting
echo -e "\n Script program to enable or modify static redirection\n"
if ! [ $# = 2 ]
then echo "the exact sintax for this script is: ./redirect xxx.xxx.xxx.xxx (private address) xxx.xxx.xxx.xxx (public adres)"
else
echo -e "Static redirection for $1 address of private host made \n"
/usr/sbin/ipmasqadm portfw -a -P tcp -L $2 6891 -R $1 6891
/usr/sbin/ipmasqadm portfw -a -P tcp -L $2 6892 -R $1 6892
/usr/sbin/ipmasqadm portfw -a -P tcp -L $2 6893 -R $1 6893
/usr/sbin/ipmasqadm portfw -a -P tcp -L $2 6893 -R $1 6893
/usr/sbin/ipmasqadm portfw -a -P tcp -L $2 6894 -R $1 6894
/usr/sbin/ipmasqadm portfw -a -P tcp -L $2 6895 -R $1 6895
/usr/sbin/ipmasqadm portfw -a -P tcp -L $2 1720 -R $1 1720
/usr/sbin/ipmasqadm portfw -a -P tcp -L $2 1503 -R $1 1503
/usr/sbin/ipmasqadm portfw -a -P udp -L $2 3782 -R $1 3782
/usr/sbin/ipmasqadm portfw -a -P udp -L $1 3782 -R $1 3782
echo -e "\n List table:"
ipmasqadm portfw -l
fi
echo -e "\n" |
Dit scriptje **aangepast, origineel staat als redirection_on op dezelfde site als de masq module!** mapt alle porten van msm en netmeeting rechtstreeks door naar je destination ip.
Let wel op dat dit niet de mooiste oplossing is. Die masq module is mooier, omdat je er meerdere pc's gebruik van kunt laten maken.
edit:
foutje uit script gehaald
Woonachtig Down Under. Ik negeer je insults niet, maar tegen de tijd dat ik ze lees zijn ze meestal niet relevant meer