Top

Tags: Linux

How To Open A Port In CentOS 7 With Firewalld

Jul 28, 2020 | 654 views

#Linux


From: How To Open A Port In CentOS 7 With Firewalld and also here.

And 5 Useful Examples of firewall-cmd command

Open Specific Port

[root@centos7 ~]# firewall-cmd --permanent --add-port=100/tcp
success
[root@centos7 ~]# firewall-cmd --reload
success

We can also open a range of ports in the same way.

[root@centos7 ~]# firewall-cmd --permanent --add-port=200-300/tcp
success

Comments: 0

4.4 Git on the Server - Setting Up the Server

Jul 26, 2020 | 690 views

#Linux

Check out from:  https://git-scm.com/book/en/v2/Git-on-the-Server-Setting-Up-the-Server

  • Tip to get only the remote URL:  git config --get remote.origin.url

Comments: 0