بک نمیکنه وگرنه سریعتر از اینا برگشت میزدم.
پول که رفت تو حسابشون دیگه برگشت نمی زنن.
4 روز وقت ما گرفت اخرش هم یک راهنمایی فرستاده که بدرد خودش میخوره
ما که نفهمیدیم کسی می فهمه مظنورش چیه این اموزش قدم به قدم اش هست :D
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*