Updated Dayna Port SCSI Link (markdown)

Daniel Markstedt 2021-09-15 17:54:55 -07:00
parent 729bc4b787
commit 8bbc42fdec
1 changed files with 23 additions and 2 deletions

@ -37,10 +37,10 @@ git checkout develop
```
# Scripted network configuration:
./easyinstall.sh # Select option 5 to configure wired, and 6 to configure wireless bridge
# Let the Pi reboot, and attach a DaynaPORT adapter to your RaSCSI as instructed in the script
```
- Let the Pi reboot, and attach a DaynaPORT adapter to your RaSCSI as instructed in the script
## Manual Setup
If you're *not* using easyinstall.sh to configure the network bridge, you can follow the manual steps below.
@ -142,6 +142,27 @@ On the Mac side, in the TCP/IP or MacTCP control panel choose Manual and input:
<span style="color:Grey">Note: AppleTalk won't work to communicate with other devices on the network with this configuration.</span>
# Attach a DaynaPORT adapter to your RaSCSI configuration
There are four ways to accomplish this:
1. Launch 'rascsi' with parameters on the command line (when not running as a service)
2. Edit the rascsi.service configuration to attach devices on launch (when running as a service)
3. Use 'rasctl' to dynamically attach the device on a running rascsi instance
4. Use the Web UI to attach the device
Assuming SCSI ID 6 and eth0/wlan0 in the following examples. Note that by default, the DaynaPORT device will launch with parameters 'eth0,wlan0' meaning it will attempt to use eth0 first, and if unavailable wlan0. Also, the default IP address is 10.10.20.1/24. So for most usecases, if you follow the automated process and use the default values, you don't have to specify any parameters when attaching the DaynaPORT device and it should work out of the box.
Ex. with rascsi / wireless / static IP
```rascsi -ID 6 -t scdp wlan0:10.10.20.1/24```
Ex. with rasctl / wireless/ static IP
```rasctl -i 6 -c attach -t scdp -f wlan0:10.10.20.1/24```
Example when editing rascsi.service
```ExecStart=/usr/local/bin/rascsi -ID 6 -t scdp eth0```
Pro tip: Once you've attached your DaynaPORT device with just the right parameters, you can save that as a RaSCSI Web UI configuration file. If you name it *default* (~/images/default.json) that configuration will be loaded when the Web UI starts up for ultimate convenience!
# <img src="images/happy_mac.gif" alt="Happy Mac" height="30"> Macintosh Setup Instructions