KoolV
asked on
How do I unblock IP addresses on my linux web server using mac Terminal?
I need to occasionally unblock IP addresses on my Linux web server using Mac Terminal app where can I find the commands to do so?
what is actually blocking the ips? is the built in firewall (iptables) or something else?
ASKER
Yes I believe so I have not accessed the server with mac terminal before but need to learn how to
SSH ot Telnet are the two easy ways. Start the terminal app on your mac and try to either ssh of telnet to your Linux machine.
eg.
ssh 192.168.0.2
- or -
telnet 192.168.0.2
I'm assuming in this example that your Linux machine is 192.168.0.2
eg.
ssh 192.168.0.2
- or -
telnet 192.168.0.2
I'm assuming in this example that your Linux machine is 192.168.0.2
ah, i misunderstood what you were asking. I thought you were asking what commands on the linux server you need to run, not the command on the mac to connect to the linux server.
ASKER
yes I need to know what commands I need to enter in Mac terminal to access the IP blocking tables or that area to view what IP addresses have been blocked and need to know how to unblock them
ASKER
The Linux web server is in a data centre and I have the IP of it etc just need to know where to find Linux commands
Hi KooIV,
You need to unblock IPs on your linux web server so you need to access it some way.
Does your server support telnet ssh or both?
FIt doesn't matter if your server is in a data center or in your basement, 1st step is to access your server. So can you open your mac terminal, we are going to use it to take over your server.
try ssh [your server ip]
you should be asked for a login and password.
You need to unblock IPs on your linux web server so you need to access it some way.
Does your server support telnet ssh or both?
FIt doesn't matter if your server is in a data center or in your basement, 1st step is to access your server. So can you open your mac terminal, we are going to use it to take over your server.
try ssh [your server ip]
you should be asked for a login and password.
ASKER
I tried that and got this
ssh: connect to host 119.252.19.49 port 22: Operation timed out
ssh: connect to host 119.252.19.49 port 22: Operation timed out
SOLUTION
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
Refer to your post 34153507.
Are you able to do a SSH at the machine locally ?
If yes ...then it clearly points to a network issue, firewall issue.
If no you have to make sure the SSH server is running on the
server.
Are you able to do a SSH at the machine locally ?
If yes ...then it clearly points to a network issue, firewall issue.
If no you have to make sure the SSH server is running on the
server.
ASKER CERTIFIED SOLUTION
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
ASKER
I found a guy who fixed it all fro me thanks for your efforts though