한 곳에서 여러대로 채굴하는 경우 ip는 어떻게 되죠?

공유기를 통해 여러대로 채굴하는 경우 포트포워딩으로 8800을 한대의 컴퓨터에만 줄수가 있게 됩니다.
설정에서 내부, 외부를 고쳐서 7700, 8800으로 고치고 내부 포트 번호를 docker-compose 파일에서 수정해서 사용할 수 있을까요?

In case of mining multiple units through a router, 8800 can be given to only one computer by port forwarding.
Can I change the internal and external settings in the configuration to 7700, 8800 and use the internal port number by modifying it in the docker-compose file?

예를 들면 설정에서
sawtooth-validator -vv
–endpoint tcp://000.000.111.11:<7700 > -> 이 포트만 바꾸어도 될까요?

For example in settings
sawtooth-validator -vv
–endpoint tcp://000.000.111.11:<7700 > -> Can I just change this port?

Yes, you can modify the Sawtooth .yaml file. For example:

validator:

ports:
- “4004:4004”
- “7700:7700”
entrypoint: |
bash -c ’

sawtooth-validator \
–endpoint tcp://192.168.1.76:7700 \

–bind network:tcp://eth0:7700 \

2 Likes

고맙습니다.
port 번호만 다르게 하고
rpc 값과sigh 값은 같게 사용하면 블록 채굴이 어떻게 되고 있는지 확인할 수 있는 방법이 있습니까

Thx!
Just make the port number different
If rpc and sigh values are the same, is there a way to check how block mining is going?