This repository was archived by the owner on Jan 24, 2025. It is now read-only.
File tree 5 files changed +8
-8
lines changed
deploy/ansible/roles/iota-core-node/templates
5 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ const (
13
13
// ParametersP2P contains the definition of configuration parameters used by the p2p plugin.
14
14
type ParametersP2P struct {
15
15
// BindAddress defines on which multi addresses the p2p service should listen on.
16
- BindMultiAddresses []string `default:"/ip4/0.0.0.0/tcp/14666 ,/ip6/::/tcp/14666 " usage:"the bind multi addresses for p2p connections"`
16
+ BindMultiAddresses []string `default:"/ip4/0.0.0.0/tcp/15600 ,/ip6/::/tcp/15600 " usage:"the bind multi addresses for p2p connections"`
17
17
18
18
ConnectionManager struct {
19
19
// Defines the high watermark to use within the connection manager.
Original file line number Diff line number Diff line change 19
19
},
20
20
"p2p" : {
21
21
"bindMultiAddresses" : [
22
- " /ip4/0.0.0.0/tcp/14666 " ,
23
- " /ip6/::/tcp/14666 "
22
+ " /ip4/0.0.0.0/tcp/15600 " ,
23
+ " /ip6/::/tcp/15600 "
24
24
],
25
25
"connectionManager" : {
26
26
"highWatermark" : 10 ,
Original file line number Diff line number Diff line change 3
3
{% for interface in ansible_interfaces -%}
4
4
{% - set interface_details = hostvars [inventory_hostname ]['ansible_' + interface ] %}
5
5
{% - if interface_details .ipv 4 is defined and 'address' in interface_details .ipv 4 -%}
6
- {% - set _ = ips .append ("/ip4/" + interface_details .ipv 4.address + "/tcp/14666 " ) -%}
6
+ {% - set _ = ips .append ("/ip4/" + interface_details .ipv 4.address + "/tcp/15600 " ) -%}
7
7
{% - endif -%}
8
8
{% endfor -%}
9
9
version: '3.3'
@@ -24,7 +24,7 @@ services:
24
24
soft: 16384
25
25
hard: 16384
26
26
ports:
27
- - "14666:14666 /tcp" # P2P
27
+ - "15600:15600 /tcp" # P2P
28
28
- "6061:6061/tcp" # pprof
29
29
- "8080:14265/tcp" # REST-API
30
30
- "8081:8081/tcp" # Dashboard
@@ -39,7 +39,7 @@ services:
39
39
-c
40
40
config.json
41
41
--logger.level=debug
42
- --p2p.peers=/dns/node-01.feature/tcp/14666 /p2p/12D3KooWCrjmh4dUCWfGVQT6ivzArieJB9Z3eKdy2mdEEN95NDPS
42
+ --p2p.peers=/dns/node-01.feature/tcp/15600 /p2p/12D3KooWCrjmh4dUCWfGVQT6ivzArieJB9Z3eKdy2mdEEN95NDPS
43
43
--p2p.externalMultiAddresses={{ ips | join(',') }}
44
44
--p2p.identityPrivateKey={{p2pIdentityPrvKey}}
45
45
--p2p.db.path=/app/data/peerdb
Original file line number Diff line number Diff line change @@ -101,7 +101,7 @@ func newTestPeer(_ string) *network.Peer {
101
101
panic (err )
102
102
}
103
103
104
- addrInfo , _ := peer .AddrInfoFromString ("/ip4/0.0.0.0/udp/14666 /p2p/" + p2pid .String ())
104
+ addrInfo , _ := peer .AddrInfoFromString ("/ip4/0.0.0.0/udp/15600 /p2p/" + p2pid .String ())
105
105
return network .NewPeerFromAddrInfo (addrInfo )
106
106
}
107
107
Original file line number Diff line number Diff line change @@ -10,5 +10,5 @@ COMMON_CONFIG="
10
10
"
11
11
12
12
MANUALPEERING_CONFIG = "
13
- --p2p.peers = /dns/node-1-validator/tcp/14666 /p2p/12D3KooWRVt4Engu27jHnF2RjfX48EqiAqJbgLfFdHNt3Vn6BtJK\
13
+ --p2p.peers = /dns/node-1-validator/tcp/15600 /p2p/12D3KooWRVt4Engu27jHnF2RjfX48EqiAqJbgLfFdHNt3Vn6BtJK\
14
14
"
You can’t perform that action at this time.
0 commit comments