FTP network settings update

Hello,
I have a module ‘Connect ME9210’ and I’m using the example project ‘SNMPv3’. Network setting is static (not using DHCP).

My question is can I change the static IP address and other network setting via FTP? Also, Can I access NVRAM variables via the FTP?

Thank you

unfortunately, no , not out of the box. FTP is File transfer protocol, and it does just that. How ever you can implement it in software if you want similarly to how firmware update works. Write a code that detects if uploaded via ftp file name is new_settings.txt (for example), then read it and apply new settings programaticaly. This way every time you need a change you will be uploading a new_settings.txt file via ftp and your code will process it.

1 Like

Thank you for info.