Showing posts with label linux. Show all posts
Showing posts with label linux. Show all posts

Tuesday, March 8, 2022

FirewallD: Allow Port or Services

To start / stop firewalld #systemctl start firewalld OR service firewalld start #systemctl stop firewalld OR service firewalld stop1. To allow specific port. Example to allow TCP port 10000, 8080 and 8443#firewall-cmd --permanent --add-port=10000/tcp#firewall-cmd --permanent --add-port=8080/tcp#firewall-cmd --permanent --add-port=8443/tcp#firewall-cmd --reload2. To check the port that opened#firewall-cmd...

Friday, November 26, 2021

Linux : Export display over SSH

1. Install Putty & Xming . Then install the application in client desktop.2. Configuration Putty in client desktop - access to ssh port - enable setting in X11. The setting as above. - after login in to server then type the putty - then the putty screen will export to client desktop.   3....