Hi Emiliano, On boot, the CASPER RFSoC image is expecting to be connected to a network where a DHCP server is running. This can be changed, but is the default behavior. From the information you provided it appears that there is no DHCP server that is offering IP addresses. In your screenshoot depicting your TeraTerm connection to the board, `eth0` is the interface that is used for connections. There, eth0 is setting a self-assigned IP (starting 169…).
You will either need to setup a DHCP server in that VM, or you can connect to the board over serial and set a static IP address in the subnet for your VM. To set a static IP address you would edit the `eth0` interface configuration file at `/etc/network/interfaces.d/` to change from DHCP to static. Here is an example: Based on your first screenshot, your vm network subnet configuration is using 192.168.1.0/24. You could then set the configuration to: ``` auto eth0 iface eth0 inet static address 192.168.1.100 netmask 255.255.255.0 gateway 192.168.1.1 ``` This will set the ip address for your RFSoC board to 192.168.1.100. After this edit, you will need to restart the interface (by running the command `ifdown eth0`, followed by running `ifup eth0`), or just power cycle the board. After the interface refreshes you should be able to connect to the board using the IP address `192.168.1.100` your calls to CasperFpga. You can also verify the IP address change was successful by connecting again via serial and checking that eth0 reports the expected IP address. Hope this helps, Mitch > On Nov 14, 2023, at 4:30 PM, Emiliano Toledo <[email protected]> > wrote: > > Good day everyone. I've been trying to set up Casper Fpga, and I can't > connect via ethernet. > I've been using a Virtual machine provided by Andrew (thanks again), with the > Toolchain already installed, so I've been digging trougth VM network options, > the tests I've been doing consists of bridged adapter, then changed to fixed > IP (following similar Vivado tutorials involving Ubuntu images on the > microSD).<Captura de pantalla 2023-11-14 163223.png> > > <Captura de pantalla 2023-11-14 162832.png> > I've already tested the installation worked (with casperfpga.__version__), > and MAC andress is mannually written with serial communication. This is the > output, I've tried with various IPs for the RFSoC device. > <Captura de pantalla 2023-11-14 164604.png> > <Captura de pantalla 2023-11-14 164706.png>I've tried running commands to > find the RFSoC and its IP address, since the serial communications works > fine, even changing the MAC adress has no problems, since the default IP > (assuming it's the same as the ZCU-216), doesn't work. > > <Captura de pantalla 2023-11-14 163314.png> > > > -- > You received this message because you are subscribed to the Google Groups > "[email protected]" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > To view this discussion on the web visit > https://groups.google.com/a/lists.berkeley.edu/d/msgid/casper/756d5a13-c10b-40cc-882f-1a4da073eebbn%40lists.berkeley.edu. > <Captura de pantalla 2023-11-14 164604.png><Captura de pantalla 2023-11-14 > 162832.png><Captura de pantalla 2023-11-14 163223.png><Captura de pantalla > 2023-11-14 164706.png><Captura de pantalla 2023-11-14 163314.png> -- You received this message because you are subscribed to the Google Groups "[email protected]" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/a/lists.berkeley.edu/d/msgid/casper/6E5D521F-7022-463D-AB6B-EBCF48596B31%40gmail.com.

