Network topology
The default setup of a Durst computer is to connect it in a private network with the supplied Caldera RIP computer. To enable access there are three options:
- Move the printer in the main LAN
- Add a switch to the private network and a second network card in our RIP computer. This is the preferred method, as it doesn’t require IP changes on the originally installed Caldera RIP and the Durst printer.
- Route IP traffic through the Caldera RIP
Determine the connection
Many Durst printers have 2 Ethernet ports in use (1 is to the outside world and 1 to the internal print engine). So before you can connect from the RIP, you have to figure out the IP address.
Open System > Administration > Network
You likely see 2 devices “eth0” and “eth1” (there might also be backups of them, which you can ignore). Double-click and note the IP addresses.
Eth0 might be 192.168.35.85 – and this will most likely be your external IP to which you can connect from your RIP.
Eth1 might be 192.0.30.30 and that’s the internal to the print engine with no outside connection (not relevant to connect from your RIP)
On the RIP check that your 2nd network card is in the same IP range as Eth0, then open a Command Prompt (Windows) or Terminal (MacOS X) and enter ‘ping 192.168.35.85’ (or equivalent). You should get positive replies.
If it fails and your Ethernet cable is verifiably connected to the same hub as the Durst printer, change the IP address of your network card to one unused in the range of Eth1 and repeat the PING test.
Once PING is successful, follow the instructions below depending on the platform used.
MacOS X 10.7 and lower
MacOS X connects to the Durst printer using the NFS protocol. This is a UNIX protocol that is the default connection method for Durst printers. To setup the connection follow the instructions below.
Start the Disk Utility (located in /Applications/Utilities) and select menu File > NFS Mounts.
In the NFS Mounts list add a new entry and a dialog show below is displayed.
At ‘Remote NFS URL’ fill in the same URL is displayed but only change the IP address by the actual IP address or DNS name of the Durst printer.
At ‘Mount location’ fill in a path on your local computer. The last part of the path (‘Durst’ in the example) may not exist. After the creation a folder with that name is created at that location.
Make sure the ‘Advanced Mount Parameters’ are filled in as shown.
After creating the NFS mount on the location ‘Mount location’ the content of the Durst printer is shown at that location.
Select ‘Mount location’/Hotfolders/Hotfolder1 (or hot folder of the users choice) as output path for the RIP its Durst driver
MacOS X 10.8 and higher
MacOS 10.8 and higher dropped the above mentioned Disk Utility facilities. Instead a commercial tool like NFS Manager can be used to do the same. This tool currently doesn’t work stabile on 10.9. When using NFS Manager execute the following steps:
- Create a folder that serves as mount location on the hard disk.
- In NFS Manager navigate to NFS Client > Configuration
- Click ‘Change options…’
- Switch on ‘resvport’
- In NFS Manager navigate to NFS Client > Active Mounts
- Click ‘Manual mount…’
- Fill in the IP address of the Durst
- Click Select at Share and select /mnt/images
- Fill in the folder path created at hard disk as last parameter
On MacOS 10.9 manual set-up via Terminal is still possible. This method we don’t actively support although it works.
Windows Pro 10
Windows 10 Pro has Windows NFS Client built in and just needs activating by going to Programes and Features, and adding the Windows Feature of NFS Client. This allows free access to shared drives on Linux platforms using the Network File System protocol.
Windows Prior to Pro 10
Windows connects to the Durst printer using the Samba protocol. This protocol is default installed at the Durst printer but not always completely setup. First test if Samba is already set-up:
- Execute ‘\\<IP>\Durst’ at the Run command of the Windows computer
- User: durst
- Password: Digilarger
If this fails try the following combination:
- User: /
- No password
If this fails then setup Samba follow the instructions below:
On the Durst computer (DFE) there are 2 ways to enable Samba:
- Replace configuration files
- Configure through the UI
- User : durst
- Password : Digilarger
Configure through the UI
In the main menu, click on System settings > Server settings > Samba, which shows the menu on the right. | |
Click ‘Add’ and enter /mnt/images. Name it ‘Durst’ and enable Read/Write on it. | |
On the tab ‘Access’, choose the radio button ‘Allow access to everyone’. |
Using an explorer, browse to /etc/samba/smb.conf and edit the file. Make sure the following content is present: path = /mnt/images public = yes writeable = yes browseable = yes guest ok = yes create mask = 777 force create mode = 777 security mask = 777 force security mode = 777 directory mask = 777 force directory mode = 777 directory security mask = 777 force directory security mode = 777 comment = Hotfolder Share |
Route IP traffic
- Determine the address of the private NIC in the Caldera RIP that communicates with the Durst printer. Usually this is 192.168.35.80
- Determine the address of the public NIC in Caldera. For example 10.0.0.4
- In the network settings on the Durst controller (the Linux box in the printer), set the default gateway to the IP address or the Caldera private NIC (Determined in step 1).
- On the Caldera RIP, edit /etc/sysctl.conf and uncomment or add a line that says:
net.ipv4.ip_forward=1 - Reboot Caldera
The easy way
Windows
route -p add 192.168.35.0 mask 255.255.255.0 10.0.0.4
$ sudo mkdir /Library/StartupItems/AddRoute$ cd /Library/StartupItems/AddRoute$ echo “{Description = \”Add static routing tables\”;Provides = (\”AddRoutes\”);Requires = (\”Network\”);OrderPreference = \”None\”;}” > StartupParameters.plist$ echo “#!/bin/sh. /etc/rc.commonStartService (){ConsoleMessage “Adding Static Routing Tables”sudo route add 192.168.35.0/24 10.0.0.4}StopService (){return 0}RestartService (){return 0}RunService “$1″” > AddRoutes$ sudo chmod 755 AddRoutes
The hard way
- Destination : 192.168.35.0/24
- Gateway : 10.0.0.4
- Distance/Metric : 1