checkmyip/README.md

33 lines
362 B
Markdown
Raw Normal View History

2017-09-02 03:54:28 +02:00
# CheckMyIP
2017-09-01 10:49:49 +02:00
A Telnet and SSH based IP Lookup Service
2017-09-02 03:54:28 +02:00
## Install Process
Change Linux SSH Port to TCP222 and reboot
```
sudo sed -i --follow-symlinks 's/#Port 22/Port 222/g' /etc/ssh/sshd_config
shutdown -r now
```
Install Dependencies
```
yum install gcc -y
yum install libffi-devel -y
yum install openssl-devel -y
pip install python-gssapi
```