This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revision | |||
playground:gmsl-zcu102-guide [11 Sep 2023 10:52] – [ZCU102 FPGA Board Setup] Sergiu Cuciurean | playground:gmsl-zcu102-guide [20 Sep 2023 14:56] (current) – [ZCU102 FPGA Board Setup] Sergiu Cuciurean | ||
---|---|---|---|
Line 95: | Line 95: | ||
{{: | {{: | ||
- | |||
- | Connect an ethernet cable to the ZCU102 RJ45 port. | ||
Attach to the serial terminal using the first USB com port that appears after connecting the ZCU102' | Attach to the serial terminal using the first USB com port that appears after connecting the ZCU102' | ||
with a baud rate of 115200. | with a baud rate of 115200. | ||
+ | |||
+ | Connect an ethernet cable to the ZCU102 RJ45 port | ||
{{: | {{: | ||
+ | |||
+ | Or connect the cable to the SFP0 port | ||
+ | |||
+ | {{: | ||
+ | |||
+ | <code c> | ||
+ | |||
+ | #Configure the interface | ||
+ | #In this case we use ZCU102' | ||
+ | $ ls -l / | ||
+ | total 0 | ||
+ | lrwxrwxrwx 1 root root 0 Mar 20 16:32 can0 -> ../ | ||
+ | lrwxrwxrwx 1 root root 0 Mar 20 16:32 eth0 -> ../ | ||
+ | lrwxrwxrwx 1 root root 0 Mar 20 16:32 eth1 -> ../ | ||
+ | lrwxrwxrwx 1 root root 0 Mar 20 16:32 eth2 -> ../ | ||
+ | lrwxrwxrwx 1 root root 0 Mar 20 16:32 lo -> ../ | ||
+ | lrwxrwxrwx 1 root root 0 Mar 20 16:32 sit0 -> ../ | ||
+ | </ | ||
+ | <note important> | ||
+ | < | ||
+ | |||
+ | #Set the MTU and ip | ||
+ | $ sudo ip link set mtu 9000 dev eth1 up | ||
+ | $ sudo ip addr add 192.168.5.1/ | ||
+ | $ ip a | ||
+ | 1: lo: < | ||
+ | link/ | ||
+ | inet 127.0.0.1/8 scope host lo | ||
+ | | ||
+ | inet6 ::1/128 scope host | ||
+ | | ||
+ | 2: sit0@NONE: < | ||
+ | link/sit 0.0.0.0 brd 0.0.0.0 | ||
+ | 3: can0: < | ||
+ | link/ | ||
+ | 5: eth0: < | ||
+ | link/ether 96: | ||
+ | 6: eth1: < | ||
+ | link/ether 8e: | ||
+ | inet 192.168.5.1/ | ||
+ | | ||
+ | inet6 fe80:: | ||
+ | | ||
+ | 7: eth2: < | ||
+ | link/ether e2: | ||
+ | |||
+ | </ | ||
< | < | ||
Line 115: | Line 162: | ||
$ cd / | $ cd / | ||
$ ./server.sh **[IP of the viewing station]** | $ ./server.sh **[IP of the viewing station]** | ||
- | $ ./server.sh 192.168.0.103 | + | $ ./server.sh 192.168.5.2 |
</ | </ |