Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,16 @@ By their nature, Knowledge Assets are semantic resources (following the W3C Sema

<br/>

First, clone the repo:
### 1. Open your port
Use the following commands to open ports 9999, 8900, and 9000 so the node can communicate with the network:
```bash
sudo ufw allow 9999 && sudo ufw allow 8900 && sudo ufw allow 9000 && sudo ufw reload
sudo iptables -A INPUT -p tcp --dport 9999 -j ACCEPT
sudo iptables -A INPUT -p tcp --dport 8900 -j ACCEPT
sudo iptables -A INPUT -p tcp --dport 9000 -j ACCEPT
```

###First, clone the repo:

```bash
git clone https://github.com/OriginTrail/ot-node.git
Expand Down