بک نمیکنه وگرنه سریعتر از اینا برگشت میزدم.
پول که رفت تو حسابشون دیگه برگشت نمی زنن.
4 روز وقت ما گرفت اخرش هم یک راهنمایی فرستاده که بدرد خودش میخوره
ما که نفهمیدیم کسی می فهمه مظنورش چیه این اموزش قدم به قدم اش هست
ok, i am not able to ping them either. Here is what i use to configure vms (i always use host only networking):
First you must configure the additional ips (for the vms) as virtual interfaces on the host (eth0:1, eth0:2, etc.). Then use the commands:
Echo 1 > /proc/sys/net/ipv4/ip_forward
sysctl -w net.ipv4.ip_forward=1
you will need to use commands like this for each public ip (*ext-ip* is a public ip, *private-ip* is the private address assigned to the vm):
Iptables -t nat -a prerouting -d *ext-ip* -i eth0 -j dnat --to-destination *private-ip*
iptables -t nat -a postrouting -s *private-ip* -o eth0 -j snat --to-source *ext-ip*