<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.basein.net/mediawiki_eng/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=%EC%86%A1%EC%9E%AC%ED%98%B8</id>
	<title>imRAD N1 Wiki(eng) - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.basein.net/mediawiki_eng/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=%EC%86%A1%EC%9E%AC%ED%98%B8"/>
	<link rel="alternate" type="text/html" href="https://wiki.basein.net/mediawiki_eng/index.php/Special:Contributions/%EC%86%A1%EC%9E%AC%ED%98%B8"/>
	<updated>2026-04-27T12:16:55Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.35.0</generator>
	<entry>
		<id>https://wiki.basein.net/mediawiki_eng/index.php?title=Command_Line_Interface_(CLI,_LYSH)&amp;diff=1880</id>
		<title>Command Line Interface (CLI, LYSH)</title>
		<link rel="alternate" type="text/html" href="https://wiki.basein.net/mediawiki_eng/index.php?title=Command_Line_Interface_(CLI,_LYSH)&amp;diff=1880"/>
		<updated>2021-06-16T06:24:38Z</updated>

		<summary type="html">&lt;p&gt;송재호: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;We provide Command Line Interface (CLI), the name is LYSH, which is used for configuring, monitoring, and maintaining the imRAD devices. &lt;br /&gt;
The CLI allows you to directly execute commands, whether using a '''console(i.e. Serial Communication)''' or using remote access methods such as '''Secure Shell (SSH, port 22)'''.&lt;br /&gt;
{{note|The imRAD device does '''not allow telnet''' access.}}&lt;br /&gt;
&lt;br /&gt;
If you access the console port, the port is located in front of the device and the type is RJ45 connector.&lt;br /&gt;
And then, configure the terminal emulation software on your PC for 115,200 baud, 8 data bits, no parity, 1 stop bit, and no flow control.&lt;br /&gt;
&lt;br /&gt;
The default or initial Username and Password are &amp;lt;span style=&amp;quot;font-family:Courier;font-weight:bold;font-size:large;&amp;quot;&amp;gt;ladmin&amp;lt;/span&amp;gt; and &amp;lt;span style=&amp;quot;font-family:Courier;font-weight:bold;font-size:large;&amp;gt;1111&amp;lt;/span&amp;gt; respectively.&amp;lt;br&amp;gt;&lt;br /&gt;
'''If you log in with the default, you must change the default password. If not, you can't access the CLI before changing the password.'''&lt;br /&gt;
&lt;br /&gt;
The CLI has two command line modes: '''user mode and configuration mode'''. By default, user mode is where you begin the session with the imRAD devices. The user mode contains commands that you can use to see logs, the status of services, configurations, system variables and information, and so on. You can run some Linux commands in user mode.&lt;br /&gt;
&lt;br /&gt;
The configuration mode enables to have you can do changes on device configuration such as hostname, Database properties, IP address, nameserver, tiemzone, ntp, ufw, failover, etc. To enter the configuration mode, type the &amp;lt;code&amp;gt;configure&amp;lt;/code&amp;gt; command in the user mode.&lt;br /&gt;
&lt;br /&gt;
If press the &amp;lt;tab&amp;gt; key at any time,  you can complete the command or see the argument of the command, You can also display &amp;quot;help&amp;quot; by input -h or --help at the end of every command, &lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
LYSH@MyHostName# show -h&lt;br /&gt;
usage: show [-h] {apache2,command,config,datetime,dci,files,failover,hardware,interface,listen,log,&lt;br /&gt;
loghost,multicast,mysql,ntp,php,service,session,system,uptime} ...&lt;br /&gt;
&lt;br /&gt;
 show the system information&lt;br /&gt;
positional arguments:&lt;br /&gt;
    apache2                             show the status of apache2 service&lt;br /&gt;
    command                             show all or related commands&lt;br /&gt;
    config                              show config files&lt;br /&gt;
    datetime                            show current time and zone    &lt;br /&gt;
    .....&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If you want to see all commands, enter the &amp;lt;code&amp;gt;show command&amp;lt;/code&amp;gt; in the user mode. If you want to find specific commands which include the keyword, enter the &amp;lt;code&amp;gt;show command {keyword}&amp;lt;/code&amp;gt;. It shows all commands which contain the keyword.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
LYSH@MyHostName# show command		// list all commands&lt;br /&gt;
configure                        enable config mode&lt;br /&gt;
╠══ database                     Configure database backup or dci property&lt;br /&gt;
║   ╠══ backup                   Configure database backup&lt;br /&gt;
║   ║   ╠══ disable                  disable database backup scheduler&lt;br /&gt;
║   ║   ╠══ enable                   enable database backup scheduler&lt;br /&gt;
║   ║   ╠══ hour                     Configure the starting hour of database backup&lt;br /&gt;
║   ║   ╠══ interval                 Configure the database backup interval in days&lt;br /&gt;
...&lt;br /&gt;
&lt;br /&gt;
LYSH@MyHostName# show command ip	// search commands which contain &amp;quot;ip&amp;quot;&lt;br /&gt;
configure fail2ban               Configure the fail2ban(bans IP that makes too many password failures)&lt;br /&gt;
configure ip                     Add/Delete an IP address&lt;br /&gt;
configure ip add                 add an IP address to an ethernet interface.&lt;br /&gt;
configure ip delete              delete an IP address from an ethernet interface&lt;br /&gt;
show multicast                   show multicast group membership information&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
if you execute &amp;lt;code&amp;gt;show command --linux&amp;lt;/code&amp;gt; command, you can see allowed Linux commands. &lt;br /&gt;
{{Note| Note that you can not execute commands that are not allowed such as rm, vi, and so on.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
LYSH@MyHostName# show command linux&lt;br /&gt;
a2dismod        a2enconf        a2dismod        a2enmod         apt             arp             awk&lt;br /&gt;
cat             clear           dpkg            grep            gzip            head            ifconfig&lt;br /&gt;
ip              journalctl      last            lastb           lshw            lsof            ly_dhcpv4&lt;br /&gt;
ly_dhcpv6       ly_failover     ly_logexp       man             more            mysql           mysqldump&lt;br /&gt;
mysql_upgrade   netsat          openssl         passwd          php             phpdismod       phpenmod&lt;br /&gt;
pidof           ping            ping6           pmap            ps              radcrypt        radiusd&lt;br /&gt;
.....&lt;br /&gt;
&lt;br /&gt;
LYSH@MyHostName#  ping &lt;br /&gt;
PING 8.8.8.8 (8.8.8.8) 56(84) bytes of data.&lt;br /&gt;
64 bytes from 8.8.8.8: icmp_seq=1 ttl=110 time=44.6 ms&lt;br /&gt;
64 bytes from 8.8.8.8: icmp_seq=2 ttl=110 time=44.0 ms&lt;br /&gt;
.....&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>송재호</name></author>
	</entry>
	<entry>
		<id>https://wiki.basein.net/mediawiki_eng/index.php?title=Attributes&amp;diff=1879</id>
		<title>Attributes</title>
		<link rel="alternate" type="text/html" href="https://wiki.basein.net/mediawiki_eng/index.php?title=Attributes&amp;diff=1879"/>
		<updated>2021-06-16T05:04:19Z</updated>

		<summary type="html">&lt;p&gt;송재호: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__FORCETOC__&lt;br /&gt;
=== RADIUS &amp;gt; Attributes ===&lt;br /&gt;
Remote Authentication Dial-In User Service (RADIUS) attributes are used to define specific authentication, authorization, and accounting (AAA) elements in a user profile, which are stored on the RADIUS program.&lt;br /&gt;
&lt;br /&gt;
RADIUS Internet Engineering Task Force (IETF) attributes are the original set of 255 standard attributes that are used to communicate AAA information between a client and a server. The IETF attributes are standard and the attribute data is predefined. All clients and servers that exchange AAA information using IETF attributes must agree on attribute data such as the exact meaning of the attributes and the general bounds of the values for each attribute.&amp;lt;ref&amp;gt;https://www.cisco.com/c/en/us/td/docs/ios-xml/ios/sec_usr_radatt/configuration/xe-16/sec-usr-radatt-xe-16-book/sec-rad-ov-ietf-attr.html&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You can search for one or more attributes in this menu.&lt;br /&gt;
&lt;br /&gt;
=== References ===&lt;/div&gt;</summary>
		<author><name>송재호</name></author>
	</entry>
	<entry>
		<id>https://wiki.basein.net/mediawiki_eng/index.php?title=Accounting&amp;diff=1495</id>
		<title>Accounting</title>
		<link rel="alternate" type="text/html" href="https://wiki.basein.net/mediawiki_eng/index.php?title=Accounting&amp;diff=1495"/>
		<updated>2021-05-07T05:46:21Z</updated>

		<summary type="html">&lt;p&gt;송재호: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;There are two RADIUS logs that are the Accounting and Postauth.&lt;br /&gt;
The main difference is in which time a log is written. The Accounting log is saving while users are using a network after network access is granted.&amp;lt;br&amp;gt;However, the Postauth is written immediately after processing every ACCESS-REQUEST from users.&lt;br /&gt;
For IEEE 802.1X Authenticators, this attribute is used to store the Supplicant MAC address.&lt;br /&gt;
Some [[NAS]] devices may not support accounting. Also, depends on the [[NAS]] device, the according may be a little different.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! style='width:200px' | Items !! style='width:180px'  | Attribute name!! Description&lt;br /&gt;
|-&lt;br /&gt;
| Username|| User-Name || It indicates the name of the user to be authenticated.&lt;br /&gt;
|-&lt;br /&gt;
| Calling-Station-ID || Calling-Station-Id || This Attribute allows the NAS to send in the Access-Request packet the phone number that the call came from, using Automatic Number Identification (ANI) or similar technology.&lt;br /&gt;
For IEEE 802.1X Authenticators, this attribute is used to store the Supplicant MAC address. &amp;lt;br&amp;gt;&lt;br /&gt;
The imRAD saves the Calling-Station-ID after stripping some delimiters, such as &amp;quot;-&amp;quot; or &amp;quot;:&amp;quot;.&lt;br /&gt;
|-&lt;br /&gt;
| Calling-Station-ID(nostrip) || Calling-Station-Id || This is the same as the above except for stripping the delimiters.&lt;br /&gt;
|-&lt;br /&gt;
| Host IPv4 Address || Framed-IP-Address || It is the IPv4 address of a supplicant.&lt;br /&gt;
|-&lt;br /&gt;
| Host IPv6 Address || Framed-IPv6-Address || It is the IPv6 address of a supplicant.&lt;br /&gt;
|-&lt;br /&gt;
| realm || Realm || It is the name of [[Realm and proxy| realm]] in a username.&lt;br /&gt;
|-&lt;br /&gt;
| NAS || NAS-IP-Address|| It is the IP address of a [[NAS]].&lt;br /&gt;
|-&lt;br /&gt;
| NAS ID || NAS-Identifier|| It is the the [[NAS Identifier | NAS Identifier]].&lt;br /&gt;
|-&lt;br /&gt;
| NAS Port ID || NAS-Port-Id || It identifies the port of the NAS which is authenticating the user. This typically matches the interface description.&amp;lt;ref&amp;gt;https://www.cisco.com/c/en/us/td/docs/ios/12_2sb/feature/guide/rd_naspt.html#wp1066674&amp;lt;/ref&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| NAS Port Type || NAS-Port-Type || It indicates the type of physical port the NAS is using to authenticate the user. &amp;lt;ref&amp;gt;https://www.cisco.com/c/en/us/td/docs/ios/12_2sb/feature/guide/rd_naspt.html#wp1049275&amp;lt;/ref&amp;gt;&lt;br /&gt;
&amp;lt;ref&amp;gt;https://www.iana.org/assignments/radius-types/radius-types.xhtml#radius-types-13&amp;lt;/ref&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Save Time || - || The date and time that the Accounting was saved in the local database. This value changes whenever the Accounting is received.&lt;br /&gt;
|-&lt;br /&gt;
| Start Time || - || The first date and time that network access is granted.&lt;br /&gt;
|-&lt;br /&gt;
| Stop Time || - || The date and time that network access is closed. If this value is blank, it means that the user is still using network.&lt;br /&gt;
|-&lt;br /&gt;
| Update Time || - || The recent date and time of the Accounting was received.&lt;br /&gt;
|-&lt;br /&gt;
| Session Time || Acct-Session-Time || This attribute indicates how many seconds the user has received service for.&lt;br /&gt;
|-&lt;br /&gt;
| Input || Acct-Input-Packets || This attribute indicates how many packets have been received from the port over the course of this service being provided to a Framed User.&lt;br /&gt;
|-&lt;br /&gt;
| Output|| Acct-Output-Packets || This attribute indicates how many packets have been sent to the port in the course of delivering this service to a Framed User.&lt;br /&gt;
|-&lt;br /&gt;
| Authentic || Acct-Authentic || It indicates how the user was authenticated and is either RADIUS, Local, or Remote.&amp;lt;ref&amp;gt;https://tools.ietf.org/html/rfc2866#page-16&amp;lt;/ref&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
The RADIUS means that a user was authenticated by a RADIUS server. The Local means that a user was authenticated by a NAS.&lt;br /&gt;
The Remote means that a user was authenticated by others.&lt;br /&gt;
|-&lt;br /&gt;
| Interval || Acct-Interim-Interval || It indicates the number of seconds between each interim update in seconds.&amp;lt;ref&amp;gt;https://tools.ietf.org/html/rfc2869#page-36&amp;lt;/ref&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Terminate-Cause|| Acct-Terminate-Cause || It indicates how the session was terminated.&amp;lt;ref&amp;gt;https://tools.ietf.org/html/rfc2866#page-19&amp;lt;/ref&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|Called-Station-ID || Called-Station-ID	|| For IEEE 802.1X Authenticators, this attribute is used to store the bridge or Access Point MAC address.&amp;lt;ref&amp;gt;https://www.oreilly.com/library/view/radius/0596003226/re07.html&amp;lt;/ref&amp;gt;&amp;lt;ref&amp;gt;https://tools.ietf.org/html/rfc2865#page-50&amp;lt;/ref&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Service Type || Service-Type || This Attribute indicates the type of service the user has requested, or the type of service to be provided.&amp;lt;ref&amp;gt;https://tools.ietf.org/html/rfc2865#page-31&amp;lt;/ref&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| 연결 시작 형태&amp;lt;br&amp;gt;연결 중지 형태 || Connect-Info || This attribute is sent from the NAS to indicate the nature of the user's connection.&amp;lt;ref&amp;gt;https://tools.ietf.org/html/rfc2869#page-30&amp;lt;/ref&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== References ===&lt;/div&gt;</summary>
		<author><name>송재호</name></author>
	</entry>
	<entry>
		<id>https://wiki.basein.net/mediawiki_eng/index.php?title=Accounting&amp;diff=1494</id>
		<title>Accounting</title>
		<link rel="alternate" type="text/html" href="https://wiki.basein.net/mediawiki_eng/index.php?title=Accounting&amp;diff=1494"/>
		<updated>2021-05-07T05:43:17Z</updated>

		<summary type="html">&lt;p&gt;송재호: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;There are two RADIUS logs that are the Accounting and Postauth.&lt;br /&gt;
The main difference is in which time a log is written. The Accounting log is saving while users are using a network after network access is granted.&amp;lt;br&amp;gt;However, the Postauth is written immediately after processing every ACCESS-REQUEST from users.&lt;br /&gt;
For IEEE 802.1X Authenticators, this attribute is used to store the Supplicant MAC address.&lt;br /&gt;
Some [[NAS]] devices may not support the accounting. Also, depends on the [[NAS]] device, the according may be a little different.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! style='width:200px' | Items !! style='width:180px'  | Attribute name!! Description&lt;br /&gt;
|-&lt;br /&gt;
| Username|| User-Name || It indicates the name of the user to be authenticated.&lt;br /&gt;
|-&lt;br /&gt;
| Calling-Station-ID || Calling-Station-Id || This Attribute allows the NAS to send in the Access-Request packet the phone number that the call came from, using Automatic Number Identification (ANI) or similar technology.&lt;br /&gt;
For IEEE 802.1X Authenticators, this attribute is used to store the Supplicant MAC address. &amp;lt;br&amp;gt;&lt;br /&gt;
The imRAD saves the Calling-Station-ID after stripping some delimiters, such as &amp;quot;-&amp;quot; or &amp;quot;:&amp;quot;.&lt;br /&gt;
|-&lt;br /&gt;
| Calling-Station-ID(nostrip) || Calling-Station-Id || This is the same as the above except for stripping the delimiters.&lt;br /&gt;
|-&lt;br /&gt;
| Host IPv4 Address || Framed-IP-Address || It is the IPv4 address of a supplicant.&lt;br /&gt;
|-&lt;br /&gt;
| Host IPv6 Address || Framed-IPv6-Address || It is the IPv6 address of a supplicant.&lt;br /&gt;
|-&lt;br /&gt;
| realm || Realm || It is the name of [[Realm and proxy| realm]] in a username.&lt;br /&gt;
|-&lt;br /&gt;
| NAS || NAS-IP-Address|| It is the IP address of a [[NAS]].&lt;br /&gt;
|-&lt;br /&gt;
| NAS ID || NAS-Identifier|| It is the the [[NAS Identifier | NAS Identifier]].&lt;br /&gt;
|-&lt;br /&gt;
| NAS Port ID || NAS-Port-Id || It identifies the port of the NAS which is authenticating the user. This typically matches the interface description.&amp;lt;ref&amp;gt;https://www.cisco.com/c/en/us/td/docs/ios/12_2sb/feature/guide/rd_naspt.html#wp1066674&amp;lt;/ref&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| NAS Port Type || NAS-Port-Type || It indicates the type of physical port the NAS is using to authenticate the user. &amp;lt;ref&amp;gt;https://www.cisco.com/c/en/us/td/docs/ios/12_2sb/feature/guide/rd_naspt.html#wp1049275&amp;lt;/ref&amp;gt;&lt;br /&gt;
&amp;lt;ref&amp;gt;https://www.iana.org/assignments/radius-types/radius-types.xhtml#radius-types-13&amp;lt;/ref&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Save Time || - || The date and time that the Accounting was saved in the local database. This value changes whenever the Accounting is received.&lt;br /&gt;
|-&lt;br /&gt;
| Start Time || - || The first date and time that network access is granted.&lt;br /&gt;
|-&lt;br /&gt;
| Stop Time || - || The date and time that network access is closed. If this value is blank, it means that the user is still using network.&lt;br /&gt;
|-&lt;br /&gt;
| Update Time || - || The recent date and time of the Accounting was received.&lt;br /&gt;
|-&lt;br /&gt;
| Session Time || Acct-Session-Time || This attribute indicates how many seconds the user has received service for.&lt;br /&gt;
|-&lt;br /&gt;
| Input || Acct-Input-Packets || This attribute indicates how many packets have been received from the port over the course of this service being provided to a Framed User.&lt;br /&gt;
|-&lt;br /&gt;
| Output|| Acct-Output-Packets || This attribute indicates how many packets have been sent to the port in the course of delivering this service to a Framed User.&lt;br /&gt;
|-&lt;br /&gt;
| Authentic || Acct-Authentic || It indicates how the user was authenticated and is either RADIUS, Local, or Remote.&amp;lt;ref&amp;gt;https://tools.ietf.org/html/rfc2866#page-16&amp;lt;/ref&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
The RADIUS means that a user was authenticated by a RADIUS server. The Local means that a user was authenticated by a NAS.&lt;br /&gt;
The Remote means that a user was authenticated by others.&lt;br /&gt;
|-&lt;br /&gt;
| Interval || Acct-Interim-Interval || It indicates the number of seconds between each interim update in seconds.&amp;lt;ref&amp;gt;https://tools.ietf.org/html/rfc2869#page-36&amp;lt;/ref&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Terminate-Cause|| Acct-Terminate-Cause || It indicates how the session was terminated.&amp;lt;ref&amp;gt;https://tools.ietf.org/html/rfc2866#page-19&amp;lt;/ref&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|Called-Station-ID || Called-Station-ID	|| For IEEE 802.1X Authenticators, this attribute is used to store the bridge or Access Point MAC address.&amp;lt;ref&amp;gt;https://www.oreilly.com/library/view/radius/0596003226/re07.html&amp;lt;/ref&amp;gt;&amp;lt;ref&amp;gt;https://tools.ietf.org/html/rfc2865#page-50&amp;lt;/ref&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Service Type || Service-Type || This Attribute indicates the type of service the user has requested, or the type of service to be provided.&amp;lt;ref&amp;gt;https://tools.ietf.org/html/rfc2865#page-31&amp;lt;/ref&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| 연결 시작 형태&amp;lt;br&amp;gt;연결 중지 형태 || Connect-Info || This attribute is sent from the NAS to indicate the nature of the user's connection.&amp;lt;ref&amp;gt;https://tools.ietf.org/html/rfc2869#page-30&amp;lt;/ref&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== References ===&lt;/div&gt;</summary>
		<author><name>송재호</name></author>
	</entry>
	<entry>
		<id>https://wiki.basein.net/mediawiki_eng/index.php?title=File:%EC%B6%94%EA%B0%80%EB%B2%94%EC%9C%842.png&amp;diff=163</id>
		<title>File:추가범위2.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.basein.net/mediawiki_eng/index.php?title=File:%EC%B6%94%EA%B0%80%EB%B2%94%EC%9C%842.png&amp;diff=163"/>
		<updated>2020-11-13T05:02:14Z</updated>

		<summary type="html">&lt;p&gt;송재호: MsUpload로 파일을 올림&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;MsUpload로 파일을 올림&lt;/div&gt;</summary>
		<author><name>송재호</name></author>
	</entry>
</feed>