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

**URL:** https://community.creditcoin.org/t/ip/53
**Category:** Mining
**Created:** [October 10, 2020, 4:28pm UTC](https://community.creditcoin.org/t/ip/53 "2020-10-10T16:28:51Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![ctcboom](https://avatars.discourse-cdn.com/v4/letter/c/41988e/32.png) [@ctcboom](https://community.creditcoin.org/u/ctcboom)
#### Post date: [October 10, 2020, 4:28pm UTC](https://community.creditcoin.org/t/ip/53/1 "2020-10-10T16:28:51Z")

</div>

공유기를 통해 여러대로 채굴하는 경우 포트포워딩으로 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?

---

<div class="post-metadata">

### Author: ![anon7085849](https://avatars.discourse-cdn.com/v4/letter/a/779978/32.png) [@anon7085849](https://community.creditcoin.org/u/anon7085849)
#### Post date: [October 10, 2020, 5:34pm UTC](https://community.creditcoin.org/t/ip/53/2 "2020-10-10T17:34:55Z")

</div>

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 \

---

<div class="post-metadata">

### Author: ![ctcboom](https://avatars.discourse-cdn.com/v4/letter/c/41988e/32.png) [@ctcboom](https://community.creditcoin.org/u/ctcboom)
#### Post date: [October 15, 2020, 5:09am UTC](https://community.creditcoin.org/t/ip/53/3 "2020-10-15T05:09:56Z")

</div>

고맙습니다.  
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?
