Skip to main content

Updating AXIS M2035 cameras

DataFromSky avatar
Written by DataFromSky
Updated over a week ago

What do you need?

  • Update package (download from our website)

  • Computer with Windows 11 or Linux

Steps to update:

  1. Stop the app in the camera web UI typing the IP address in the web browser.

  2. Open Terminal (Linux) or PowerShell (Windows) in the folder with the update package.

  3. Run the upload command:

    • Linux:

      curl --anyauth -S -F packfil=@<package_file> -u <username>:<password> "http://<camera_ip>/axis-cgi/admin/applications/upload.cgi?reload_page=yes&location=sd_card1"

    • Windows:

      curl.exe --anyauth -S -F packfil=@<package_file> -u <username>:<password> "http://<camera_ip>/axis-cgi/admin/applications/upload.cgi?reload_page=yes&location=sd_card1"

    • IMPORTANT: Replace <package_file>, <username>, <password> and <camera_ip> with real values.

      Example:

      curl.exe --anyauth -S -F packfil=@FLOW_Traffic_2_1_1_aarch64.eap -u root:root "http://192.168.10.50/axis-cgi/admin/applications/upload.cgi?reload_page=yes&location=sd_card1"

  4. If successful, this text will appear:

    <meta http-equiv="refresh" content="0;URL=/devtools.shtml?package_uploaded=yes">. If not, restart the camera and retry.

  5. Start the app again in the camera web UI.

Did this answer your question?