P.S. Another option is to set your router to assign a static IP address for the Ultimaker based on its MAC address. Then you don't have to muck with the guts of your printer...
- 1
P.S. Another option is to set your router to assign a static IP address for the Ultimaker based on its MAC address. Then you don't have to muck with the guts of your printer...
I think the key point is: login as "root" (same password as the ultimaker user). Good luck, and if you've managed the static IP thing... a step-by-step docu would be very nice...
Thanks ... This solved my issue in the connection and running linux commands. It is weird that it was not mentioned anyplace online to do that.
If its really is Debian (jessie build), then static IP assignment might be as easy as:
nano /etc/dhcpcd.confThen add these lines to the bottom:
interface eth0 static ip_address=192.168.1.3/24 static routers=192.168.3.1.1 static domain_name_servers=8.8.8.8 8.8.4.4interface is what's connected to your network (eth0, wlan0, etc). Use:
ifconfigTo see which interface name has an IP address.
static ip_address is what you want to assign to your Ultimaker (you'll usually keep the /24 netmask)
static router is the IP address of your router.
static domain_name_servers is optional if your router doesn't provide them, or you want to use specific ones (these are Google's)
I will try this approach tomorrow. If it works, I will share it here.
Recommended Posts
tinkergnome 927
I think the key point is: login as "root" (same password as the ultimaker user). Good luck, and if you've managed the static IP thing... a step-by-step docu would be very nice...
Edited by GuestLink to post
Share on other sites
DaHai8 74
If its really is Debian (jessie build), then static IP assignment might be as easy as:
Then add these lines to the bottom:
interface is what's connected to your network (eth0, wlan0, etc). Use:
To see which interface name has an IP address.
static ip_address is what you want to assign to your Ultimaker (you'll usually keep the /24 netmask)
static router is the IP address of your router.
static domain_name_servers is optional if your router doesn't provide them, or you want to use specific ones (these are Google's)
Link to post
Share on other sites