-
Notifications
You must be signed in to change notification settings - Fork 8
Configuration_ko
Configuration contents
-s
또는 --search
옵션을 사용하여 장치를 검색할 수 있습니다.
$ python wizconfig.py -s
mac_list.txt
파일이 자동 생성되며, 검색된 장치들의 MAC 주소를 포함합니다.
mac_list.txt
파일은 다중 장치 설정 시 사용될 수 있습니다. (-a/--all
,-m/--multiset
또는 기타 옵션)
먼저 옵션에서 설정하려는 옵션을 찾습니다.
해당 옵션을 사용하여 장치를 설정합니다.
- 단일 장치
$ python wizconfig.py -d 00:08:DC:XX:XX:XX [Options ...]
- 여러 장치
$ python wizconfig.py -a [Options ...]
장치의 펌웨어를 업로드하려면 장치와 TCP 연결을 수립 후 펌웨어 파일을 전송해야 합니다.
따라서 IP 주소를 호스트와 동일한 네트워크 대역으로 설정하기 위해 -m/--multiset
옵션을 사용할 수 있습니다.
$ python wizconfig.py -m <IP address>
다음으로 펌웨어 파일을 준비합니다. 이때 App 버전 파일을 사용해야 합니다.
Configuration Tool에서는 App 펌웨어 업데이트만 지원합니다. Boot+App 펌웨어를 업데이트 하려면 ISP Tool을 사용해야 합니다.
펌웨어 바이너리 파일을 다운로드하려면 아래 링크를 참조하세요.
If the file is ready, perform the F/W update with the following command:
- Single device
$ python wizconfig.py -d 00:08:DC:XX:XX:XX -u <F/W file path>
- Multiple devices
$ python wizconfig.py -a -u <F/W file path>
Upload Example
호스트 PC 네트워크 대역을 확인하고 IP 주소를 설정하여 여러 장치를 업데이트 하는 예제입니다.
-m/--multiset
명령은 mac_list.txt
파일을 사용하므로 업로드 전에 -s/--search
옵션으로 검색을 수행해야 합니다.
호스트 PC IP가 '192.168.0.100' 이라고 가정했을 때, 다음과 같이 설정할 수 있습니다.
# Search devices
$ python wizconfig.py -s
# Setting Multiple devices
$ python wizconfig.py -m 192.168.0.100
이것은 예시입니다. '100' 대신 PC에서 사용하지 않는 IP 주소를 사용할 수 있습니다.
- Single device F/W upload (if mac address is '00:08:DC:AA:BB:CC')
$ python wizconfig.py -d 00:08:DC:AA:BB:CC -u W7500x_S2E_App.bin
- Multiple devices F/W upload (in mac_list.txt)
$ python wizconfig.py -a -u W7500x_S2E_App.bin