logging into a workstation from the internet


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting logging into a workstation from the internet
# 1  
Old 12-27-2006
logging into a workstation from the internet

i have a sun solaris workstation that want to be able to access when i'm not home.

is there way to do this? like say i have the workstation turned on at the house but say i'm in a hotel several miles away, i want to be able to access this workstation using the internet on my laptop
Terrible
# 2  
Old 12-27-2006
You can use secure shell to do that.
# 3  
Old 12-27-2006
Quote:
Originally Posted by Radar
You can use secure shell to do that.

ok. how does that work? i mean, i know how ssh works. i use it all to the time
but how am i going to be able to ssh into a workstation i have sitting at home?
Terrible
# 4  
Old 12-27-2006
I just forward port 22 thru my firewall at home to port 22 on the machine I want to admin and use dyndns to allow me to ssh to radar@host.dyndns.com due to my dynamic IP.
# 5  
Old 12-27-2006
Quote:
Originally Posted by Radar
I just forward port 22 thru my firewall at home to port 22 on the machine I want to admin and use dyndns to allow me to ssh to radar@host.dyndns.com due to my dynamic IP.

only if this can be simplified as i dont get it. Smilie
Terrible
# 6  
Old 12-27-2006
If your workstation is on a private network at home and your router has a dynamic IP assigned by the internet provider, you can use dyndns to register a domain name to associate with a changing IP. A client can run in some firewalls you buy for home use that will update dyndns with the new IP if it changes. If you forward port 22 to the solaris workstation IP address, the firewall will see a request for port 22 on its interface and forward it to the workstation.

Code:
ssh radar@host.dyndns.com ---> port 22 ---> myFirewall(24.xx.xx.xx) ==> port 22 ==> workstation(192.168.1.3)

# 7  
Old 12-27-2006
Quote:
Originally Posted by Radar
If your workstation is on a private network at home and your router has a dynamic IP assigned by the internet provider, you can use dyndns to register a domain name to associate with a changing IP. A client can run in some firewalls you buy for home use that will update dyndns with the new IP if it changes. If you forward port 22 to the solaris workstation IP address, the firewall will see a request for port 22 on its interface and forward it to the workstation.

Code:
ssh radar@host.dyndns.com ---> port 22 ---> myFirewall(24.xx.xx.xx) ==> port 22 ==> workstation(192.168.1.3)


so basically this would be:

ssh radar@host.dyndns.com port 22 24.xx.xx.xx 192.168.1.3
Terrible
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Linux

Syslog not logging successful logging while unlocking server's console

When unlocking a Linux server's console there's no event indicating successful logging Is there a way I can fix this ? I have the following in my rsyslog.conf auth.info /var/log/secure authpriv.info /var/log/secure (1 Reply)
Discussion started by: walterthered
1 Replies

2. AIX

Please help: workstation broken?

I have buy an used Workstation intellistation power5 IBM. But doesn't work. How to turn on? I try to connect network asmi take the ip ping is ok telnet ok but if i try to connect to a browser give me timeout The display give me a yellow sign ! and error B150F22A Someone can help... (2 Replies)
Discussion started by: Linusolaradm1
2 Replies

3. Linux

vmware workstation

i have following :- fedora 16 x 64bit kernel 3.2.7-1 vmware workstation 8.0.2. Steps to install vmware workstation to access ESX machine 1- sh vmware name.bundle 2- setup started and completed with out any warning. 3- when i type "vmware " then "VMware Module Updater Started" and the... (2 Replies)
Discussion started by: engrtahir2007
2 Replies

4. Solaris

internet on solaris10 running on vmware workstation...

HI Admins, I am trying to run internet on solaris 10 on vmware workstation 6.5.. I have vista on my laptop. I tried following: 1. enabling DHCP and NAT on virtual network editor...for NAT I tried vmnet host:vmnet0 start/stop. 2. ifconfig -a showing pcn0 running for both ipv4 and ipv6....... (1 Reply)
Discussion started by: snchaudhari2
1 Replies

5. Post Here to Contact Site Administrators and Moderators

Constant Logging In (After Logging Out)

Hi Everyone. First, I want to thank all of you for letting me participate in this great group. I am having a bit of a problem. After I get an email from a responder, I login to make my reply. In the mean time I get another response by email from another member, I go to reply to them and I... (6 Replies)
Discussion started by: Ccccc
6 Replies

6. Linux

SFTP an internet address from a system behind an internet proxy

I was wondering if it is possible to setup SFTP to go through the internet proxy while connecting to an internet location. Problem: Client system is behind internet proxy. SFTP to any internet location fails as there is no documented way to configure SFTP to connect to internet locations through... (4 Replies)
Discussion started by: toobrown1
4 Replies

7. UNIX for Dummies Questions & Answers

Problems logging into linux workstation

Hello everyone: I got this msg. when I tried to logging. "the files that contain your preference setings are currently in use" (I'm the only one). "You can continue to use the current session, but this might cause temporary problems with the preference settings in the other session". ... (2 Replies)
Discussion started by: marcvill
2 Replies

8. UNIX for Dummies Questions & Answers

I want to reset my workstation!

I am having an error in my workstation. I want to reset it and start from scratch. I also want to add a 120 G. Drive to my workstation. I checked out a book at my local library on unix. I still can't figure out how to erase everything and install this drive,please help. (4 Replies)
Discussion started by: Sotelo_27
4 Replies

9. UNIX for Dummies Questions & Answers

HP UX workstation?

Hi, I want to learn more about HP UX and I want to purchase an HP UX workstation to further my self studying. Which is a good model and where can I purchase a used system? thanks so much, (2 Replies)
Discussion started by: xNYx
2 Replies

10. Filesystems, Disks and Memory

emulations in workstation...

i have a network with Windows NT 4.0, and now i will install a UNIX server. Bud my workstation are in NT Workstation 4.0. I don't know about this installation. how do i for this connection. have i to use workstation emulation? please, help me!!! ASAP. Thanks (1 Reply)
Discussion started by: rmilano
1 Replies
Login or Register to Ask a Question