Skip to content
This repository has been archived by the owner on Jul 11, 2023. It is now read-only.

Commit

Permalink
Merge pull request #22 from sriharshaj70/ws03
Browse files Browse the repository at this point in the history
adding netconf port for juniper
  • Loading branch information
sriharshaj70 authored Sep 10, 2020
2 parents eb54198 + 3851870 commit c495d19
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .env
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
# Default (local Kind registry): localhost:5000
# Azure Container Registry (ACR) example: osmci.azurecr.io/osm
export CTR_REGISTRY=docker.dev.ws:5000
export CTR_TAG=osmlatest4
export CTR_TAG=osmlatest5


# mandatory: Password to the container registry to use. Leave blank if no authentication is required.
Expand Down
4 changes: 3 additions & 1 deletion init-iptables.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ iptables -t nat -A PROXY_REDIRECT -p tcp --dport "22" -j ACCEPT # ssh port
iptables -t nat -A PROXY_REDIRECT -p tcp --dport "49" -j ACCEPT # tacacs
iptables -t nat -A PROXY_REDIRECT -p tcp --dport "389" -j ACCEPT # radius port
iptables -t nat -A PROXY_REDIRECT -p tcp --dport "587" -j ACCEPT # email port
iptables -t nat -A PROXY_REDIRECT -p tcp --dport "830" -j ACCEPT # netconf
iptables -t nat -A PROXY_REDIRECT -p tcp --dport "2579" -j ACCEPT # kine
iptables -t nat -A PROXY_REDIRECT -p tcp --dport "2500" -j ACCEPT # osm-rest
iptables -t nat -A PROXY_REDIRECT -p tcp --dport "5000" -j ACCEPT # devicedb
Expand Down Expand Up @@ -70,8 +71,9 @@ iptables -t nat -A PROXY_INBOUND -p tcp --dport "${SSH_PORT}" -j RETURN
iptables -t nat -A PROXY_INBOUND -p tcp --dport "${PROXY_STATS_PORT}" -j RETURN

iptables -t nat -A PROXY_INBOUND -p tcp --dport "49" -j RETURN # tacacs
iptables -t nat -A PROXY_INBOUND -p tcp --dport "587" -j RETURN # email
iptables -t nat -A PROXY_INBOUND -p tcp --dport "389" -j RETURN # radius
iptables -t nat -A PROXY_INBOUND -p tcp --dport "587" -j RETURN # email
iptables -t nat -A PROXY_INBOUND -p tcp --dport "830" -j RETURN # netconf
iptables -t nat -A PROXY_INBOUND -p tcp --dport "2579" -j RETURN # kine
iptables -t nat -A PROXY_INBOUND -p tcp --dport "2500" -j RETURN # osm-rest
iptables -t nat -A PROXY_INBOUND -p tcp --dport "5000" -j RETURN # devicedb
Expand Down

0 comments on commit c495d19

Please sign in to comment.