View previous topic :: View next topic |
Author |
Message |
sobers_2002 Veteran
Joined: 16 Mar 2004 Posts: 1128
|
Posted: Mon Mar 22, 2004 3:59 am Post subject: ssh pain |
|
|
hi all
my system does not allow ssh from outside, so how do i change the default firewall rule(this must be the inbuilt 'cauz i haven;t installed any). also i can;t use "nslookup" as it isnt installed so what is the name of the utility that i should emerge?? _________________ Pdict - dockable dictionary client for linux
FREE97WIN: Use this code on Dreamhost and you get $97 off !! |
|
Back to top |
|
|
Lajasha Veteran
Joined: 17 Mar 2004 Posts: 1040 Location: Vibe Central
|
Posted: Mon Mar 22, 2004 4:15 am Post subject: |
|
|
A lil bit more infomation on what your trying to do would help. I have no clue what you are asking for at this point.
are you saying that you can not ssh into your box or out of it?
Last edited by Lajasha on Mon Mar 22, 2004 4:15 am; edited 1 time in total |
|
Back to top |
|
|
dvc5 Guru
Joined: 06 Dec 2003 Posts: 433 Location: Sunnyvale, California
|
Posted: Mon Mar 22, 2004 4:15 am Post subject: |
|
|
Which firewall are you using? iptables? The package for nslookup i believe is net-dns/bind-tools. _________________ #define NULL rand() /*heh heh heh */
Green Is Good |
|
Back to top |
|
|
nofx911 n00b
Joined: 21 Jan 2004 Posts: 30 Location: Milwaukee, WI
|
Posted: Mon Mar 22, 2004 4:25 am Post subject: |
|
|
To the best of my knowledge Gentoo does not install a firewall by default. From the command line try `ps auxww | grep sshd` and make sure that sshd is running. If you want sshd to start at boot remember to add it using rc-update.
For dns queries in Gentoo use dig
To get dig emerge bind-tools |
|
Back to top |
|
|
sobers_2002 Veteran
Joined: 16 Mar 2004 Posts: 1128
|
Posted: Mon Mar 22, 2004 7:45 am Post subject: |
|
|
ok well its so happened that sshd wasnt runnig
so now everything is ok.....thankz 4 the help
btw how do i get it runnig with startup
Quote: | sshd rc-update add sshd deafult | didnt work
Saurabh[/quote] |
|
Back to top |
|
|
airhead n00b
Joined: 01 Jul 2002 Posts: 33 Location: Auckland, New Zealand
|
Posted: Mon Mar 22, 2004 8:48 am Post subject: |
|
|
Just do this on the command line:
Code: | rc-update add sshd default |
That will make sshd start automatically on boot. To start it now without having to reboot, do:
Code: | /etc/init.d/sshd start |
|
|
Back to top |
|
|
|