0
votes
1answer
14 views

How to ssh my desktop(ubuntu) from outside network [duplicate]

I have set up simple ssh server by using openssh on my Ubuntu. I tried to ssh it from my Mac, which successful. But my mac is in the same subnet, which behind same router at my home. my ubunut local ...
0
votes
0answers
41 views

Samba file sharing on Ubuntu & Windows Computer using SSH

So I've been able to connect to a Samba file share on Ubuntu from Windows using SSH port forwarding, using this guide: http://www.bitvise.com/file-sharing. The steps include creating a loopback ...
0
votes
0answers
47 views

How to access Ubuntu running Openfire from the Internet (Public IP)?

I have Openfire installed in my Ubuntu server using port 7070. Now using ipchicken I found my public IP (example: 111.11.000.0/7070). When I try connecting from another PC through connected to the ...
3
votes
1answer
228 views

Configuration for public (external) access to ubuntu guest on ESXI 5

I am setting up a demo system on a leased dedicated server. System consists of : ESXI host with 1 NIC assigned (so 1 Static IP) 64 bit Ubuntu guest as server I installed and configured the system ...
1
vote
1answer
60 views

Access multiple SSH-controllable boxes centrally

I have a few SSH boxes running on an ESXi Host, of which I would like to access from outside my normal home network. Rather than port forwarding and pointing to all sorts of different VM's, is there ...
0
votes
1answer
182 views

How to make ubuntu server accesible from internet?

Ok, I have set up the php and apache and all that. And I can access the website from other LAN pcs, I can SSH into it from lan, and I can use FTP clients. Now I wan to make it available to internet. ...
0
votes
1answer
68 views

How do I access a port once I forward it?

I think I have successfully forwarded my port for my Ubuntu server but now I am unsure how to access it.
1
vote
0answers
455 views

Iptables port redirecting. Rule doesn't work or show up in iptabels

I'm trying to redirect some incoming TCP traffic on port 443 to port 999 with iptables in an Ubuntu VM. I am using sudo iptables -t nat -A PREROUTING -p tcp --destination-port 443 -j REDIRECT ...
3
votes
1answer
1k views

Properly portforwarding the external IP with iptables

I am trying to forward all the incoming internet/LAN requests on port 80 to my local machine (running Apache), current iptables work (forward incoming internet traffic to my desktop, but if I try to ...
1
vote
1answer
724 views

Cancel ssh port forward

To access restricted university web pages I often run the following command: ssh -fND port username@uni.address.here Then I open a firefox profile which I have set to go through port 5555 using a ...
1
vote
1answer
173 views

How can I set up a port forward from my client computer's shell?

I notice that my bittorrent client is capable of automatically setting up port forwards with my router, and I want to know if I can do the same in a shell script. The reason is, that since my router ...
0
votes
1answer
392 views

Port Forward using Ubuntu ICS

So I have my laptop receiving a wifi signal, and its sharing the connection through its ethernet port. The ethernet port is connected to a switch, and my clients (multiple computers/xbox 360/ps2) ...
0
votes
1answer
93 views

Mass Port Forwarding?

Hi I had trouble but I finally port forwarded 21-23 and thus got SSH working on my Ubuntu machine. If I want to do other things with it such as FTP, should I just port forward 1-10000 so I don't have ...
2
votes
2answers
1k views

Port forwarding + shared connection with Ubuntu

Because my wireless router's ethernet ports are defective, I set up a shared wireless connection from my laptop (which has wifi) to my eMac (which does not) via a crossover ethernet cable. The laptop ...
1
vote
4answers
670 views

A can ping B, B can ping C but A cant ping C. How do i connect A to C (ethernet)?

I have a computer at home with ip 192.168.221.xxx I have another computer at work that I can ping and it has 2 ip addresses: 192.168.1.xxx and 192.168.0.xxx. Those last 2 addresses have the same ...
1
vote
1answer
899 views

How to forward a public (network-accessible) port to a local (port or host)

I'm using Ubutnu 9.04, and XAMPP as a testing server for my websites. What I want to do is make my websites network-accessible. For now only the my-ip-address:80 is accessible and managed by XAMPP. ...