<
From version < 145.1 >
edited by Xiaoye
on 2024/02/26 15:48
To version < 156.1
edited by Kilight Cao
on 2024/06/22 10:43
Change comment: There is no comment for this version

Summary

Details

Page properties
Author
... ... @@ -1,1 +1,1 @@
1 -XWiki.Xiaoye
1 +XWiki.Kilight
Content
... ... @@ -36,7 +36,7 @@
36 36  
37 37  
38 38  * Base on Semtech SX1302 solution
39 -* Support Raspberry Pi 3B/3B+/4, TinkerBoard2/2S, Orange Pi Pc/PC PLUS.
39 +* Support Raspberry Pi 3B/3B+/4/4B/5/5B, TinkerBoard2/2S, Orange Pi Pc/PC PLUS.
40 40  * Up to -140dBm sensitivity
41 41  * Support 3.3v and 5v.
42 42  * Mini-PCIe Interface
... ... @@ -53,8 +53,8 @@
53 53  == 1.4 Pin Mapping ==
54 54  
55 55  
56 -[[image:image-20240122140551-1.png]]
57 57  
57 +[[image:image-20240506170941-3.png]]
58 58  
59 59  == 1.5 LEDs ==
60 60  
... ... @@ -97,8 +97,6 @@
97 97  * Smart Cities
98 98  * Smart Factory
99 99  
100 -
101 -
102 102  = 2. Example: Set up as LoRaWAN gateway =
103 103  
104 104  == 2.1 System structure ==
... ... @@ -121,10 +121,10 @@
121 121  [[image:image-20220621104746-1.png||height="351" width="415"]]
122 122  
123 123  
124 -= 3. Install the software? =
122 += 3. Install the software. =
125 125  
126 126  
127 -**Raspberry Pi 3B/3B+/4,**
125 +**Raspberry Pi 3B/3B+/4B/5B**
128 128  
129 129  * Flash SD card with Dragino pre-build image which supports Web UI.
130 130  * Install [[Dragino-FWD>>http://wiki.dragino.com/xwiki/bin/view/Main/User%20Manual%20for%20All%20Gateway%20models/PG1302/#H5.2.2.A0Selecttheappropriatedeviceversiontodownload:]] in existing RPi OS.
... ... @@ -537,9 +537,17 @@
537 537  * (% style="color:#0000ff" %)**Auto run**(%%) dragino_fwd after boot:  sudo systemctl enable draginofwd
538 538  * (% style="color:#0000ff" %)**Show status** (%%)of dragino_fwd:  sudo systemctl status draginofwd
539 539  
538 +
539 +
540 +
540 540  === 5.2.2 Basic Station Mode. ===
541 541  
542 542  
544 +The following example is connecting to TTNv3 via basic station:
545 +
546 +**[[Server Addresses ~| The Things Stack for Basic Station (thethingsindustries.com)>>https://console.cloud.thethings.network/]]**
547 +
548 +
543 543  ==== **a). Get a gateway EUI from the device ETH MAC.** ====
544 544  
545 545  
... ... @@ -583,59 +583,109 @@
583 583  ==== **e.) Uploda API keys into the gateway** ====
584 584  
585 585  
586 -the User can find the Basic Station configuration directory in (% style="color:#0000ff" %)**/etc/station/**(%%) there is the station.conf files, and ttnstack directory.
592 +The user can find the Basic Station configuration directory in (% style="color:#0000ff" %)**/etc/station/:**
587 587  
588 588  //**directory tree:**//
589 589  
590 -///etc/station/
591 -├── station.conf 
592 -└── ttnstack  ~-~--> ** ttnstack configuration file directory**
593 - ├── cups.trust  ~-~-->  ttnstack auth file
594 - ├── cups.uri  ~-~-->  ttnstack server URI file
595 - └── station.conf  ~-~-~-~-> backup configuration file//
596 +/etc/station/
597 +└── station.conf  ~-~--> station configuration file
596 596  
597 597  
598 -
599 599  **and then upload the downloaded keys to this directory((% style="color:#0000ff" %)/etc/station/(%%))**
600 600  
601 601  eg:
602 602  
603 -/etc/station/
604 -├── cups.key  ~-~--> uploaded by you
605 -├── lns.key  ~-~--> uploaded by you
606 -├── station.conf
604 +/etc/station/.
605 +├── cups.key
606 +├── cups.trust
607 +├── cups.uri
608 +├── lns.key
609 +└── station.conf
610 +
607 607  
612 +**lns.key and cups.key are generated by the preceding steps**
608 608  
609 -==== **f). Configure gateway EUI and server address** ====
610 610  
615 +**Download cups.trust**
611 611  
612 -[[image:image-20230329195650-10.png]]
617 +(% class="box infomessage" %)
618 +(((
619 +wget [[dragino.com/downloads/downloads/LoRa_Gateway/LPS8/Firmware/customized_script/cups.trust>>url:https://www.dragino.com/downloads/downloads/LoRa_Gateway/LPS8/Firmware/customized_script/cups.trust]]
620 +)))
613 613  
614 614  
615 -After the user enters the correct parameters, the server will be run automatically
623 +**Manually create and edit the cups.uri file**
616 616  
625 +(% class="box infomessage" %)
626 +(((
627 +touch cups.uri
617 617  
629 +nano cups.uri
630 +)))
631 +
632 +Then enter the URI address of the server, for example: **https:~/~/eu1.cloud.thethings.network:443**
633 +
634 +
635 +
636 +==== **f). Configure Gateway EUI** ====
637 +
638 +[[image:image-20240622094409-1.png]]
639 +
640 +
641 +
642 +
643 +==== **g). **Start the station service ====
644 +
645 +After configuring the GWEUI and uploading the certificate, you can start the station service via the below command:
646 +
647 +(% class="box infomessage" %)
648 +(((
649 +ln -sf /usr/bin/station_sx1302 /usr/bin/station
650 +
651 +systemctl start draginostation
652 +)))
653 +
654 +
655 +systemctl start draginostation  ~-~- start draginostation service
656 +
657 +systemctl stop draginostation  ~-~- Stop draginostation service
658 +
659 +systemctl enable draginostation ~-~- enable boot auto start draginostation service
660 +
661 +systemctl disable  draginostation  ~-~- disable boot auto start draginostation service
662 +
663 +
664 +
618 618  Tree Directory:
619 619  
620 620  /etc/station/
668 +
669 +├── cups-bak.done
670 +├── cups-bak.key
671 +├── cups-bak.trust
672 +├── cups-bak.uri
621 621  ├── cups.key
622 622  ├── cups.trust
623 623  ├── cups.uri
624 624  ├── lns.key
625 -├── start-configure.sh
626 626  ├── station.conf
627 -└── ttnstack
628 - ├── cups.trust
629 - ├── cups.uri
630 - └── station.conf
678 +├── tc-bak.crt
679 +├── tc-bak.done
680 +├── tc-bak.key
681 +├── tc-bak.trust
682 +├── tc-bak.uri
683 +├── tc.crt
684 +├── tc.key
685 +├── tc.trust
686 +└── tc.uri
687 +
631 631  
632 632  
633 -==== **g). Check station running log** ====
690 +==== **h). Check station running log** ====
634 634  
635 635  
636 636  tail -f /var/log/station.log
637 637  
638 -
639 639  [[image:image-20230329201624-11.png]]
640 640  
641 641  
image-20240506170501-1.png
Author
... ... @@ -1,0 +1,1 @@
1 +XWiki.Xiaoling
Size
... ... @@ -1,0 +1,1 @@
1 +104.7 KB
Content
image-20240506170559-2.png
Author
... ... @@ -1,0 +1,1 @@
1 +XWiki.Xiaoling
Size
... ... @@ -1,0 +1,1 @@
1 +154.3 KB
Content
image-20240506170941-3.png
Author
... ... @@ -1,0 +1,1 @@
1 +XWiki.Xiaoling
Size
... ... @@ -1,0 +1,1 @@
1 +357.5 KB
Content
image-20240622094409-1.png
Author
... ... @@ -1,0 +1,1 @@
1 +XWiki.Xiaoye
Size
... ... @@ -1,0 +1,1 @@
1 +134.7 KB
Content
Copyright ©2010-2022 Dragino Technology Co., LTD. All rights reserved
Dragino Wiki v2.0