Updated adresses to reflect the current public hosted nodes. (#223)

* Updated peers to reflect current used public nodes

* Updated peers to reflect current public hosted nodes
This commit is contained in:
Kaya-Sem
2024-04-26 15:10:51 +02:00
committed by GitHub
parent a33c8a21f4
commit 1e9a8ad70d
2 changed files with 4 additions and 4 deletions

View File

@@ -13,7 +13,7 @@ function IPA
sudo ip addr add $argv
end
set peers tcp://146.185.93.83:9651 quic://83.231.240.31:9651 quic://185.206.122.71:9651 tcp://[2a04:f340:c0:71:28cc:b2ff:fe63:dd1c]:9651 tcp://[2001:728:1000:402:78d3:cdff:fe63:e07e]:9651 quic://[2a10:b600:1:0:ec4:7aff:fe30:8235]:9651
set peers tcp://188.40.132.242:9651 quic://136.243.47.186:9651 tcp://185.69.166.7:9651 quic://[2a02:1802:5e:0:8c9e:7dff:fec9:f0d2]:9651 tcp://[2a01:4f9:6a:1dc5::2]:9651 quic://[2a01:4f9:5a:1042::2]:9651
function IPNA
set name $argv[1]

View File

@@ -6,7 +6,7 @@ alias IPN='sudo ip net'
alias IPL='sudo ip link'
alias IPA='sudo ip addr add'
peers='tcp://146.185.93.83:9651 quic://83.231.240.31:9651 quic://185.206.122.71:9651 tcp://[2a04:f340:c0:71:28cc:b2ff:fe63:dd1c]:9651 tcp://[2001:728:1000:402:78d3:cdff:fe63:e07e]:9651 quic://[2a10:b600:1:0:ec4:7aff:fe30:8235]:9651'
peers='tcp://188.40.132.242:9651 quic://136.243.47.186:9651 tcp://185.69.166.7:9651 quic://[2a02:1802:5e:0:8c9e:7dff:fec9:f0d2]:9651 tcp://[2a01:4f9:6a:1dc5::2]:9651 quic://[2a01:4f9:5a:1042::2]:9651'
function IPNA() {
local name=$1
@@ -50,7 +50,7 @@ function dropns() {
}
function doit() {
nohup sudo ./mycelium --key-file host.bin --api-addr 127.0.0.1:8989 --peers ${peers}>host.out &
nohup sudo ./mycelium --key-file host.bin --api-addr 127.0.0.1:8989 --peers ${peers} >host.out &
for i in $(seq 1 $NUMOFNS); do
createns ${i} 172.16.${i}.2/24 172.16.${i}.1/24
done
@@ -72,7 +72,7 @@ function showit() {
sudo killall -USR1 mycelium
}
function getmycelium(){
function getmycelium() {
wget https://github.com/threefoldtech/mycelium/releases/latest/download/mycelium-x86_64-unknown-linux-musl.tar.gz \
-O- | gunzip -c | tar xvf - -C ${PWD}