<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <atom:link href="http://www.jaqb.gda.pl/index.php/eng/rss/feed/my_feed" rel="self" type="application/rss+xml"/>
    <title>Co nowego na stronie</title>
    <link></link>
    <description></description>
    <language>en-GB</language>
    <item>
      <title>How to use xdotool - automation GUI application</title>
      <link>http://www.jaqb.gda.pl/index.php/eng/Community/Blog/How-to-use-xdotool-automation-GUI-application</link>
      <guid>http://www.jaqb.gda.pl/index.php/eng/Community/Blog/How-to-use-xdotool-automation-GUI-application</guid>
      <description>&lt;a name="eztoc60697_0_1" id="eztoc60697_0_1"&gt;&lt;/a&gt;&lt;h3&gt;Task&lt;/h3&gt;&lt;p&gt;To refresh Shotwell thumbnails cache.&lt;/p&gt;&lt;a name="eztoc60697_0_2" id="eztoc60697_0_2"&gt;&lt;/a&gt;&lt;h3&gt;Description&lt;/h3&gt;&lt;p&gt;Shotwell create thumbnail for every picture it display so when you scroll through gallery it will rebuild it. Problem is when storage is slow (SMB over WiFi) it takes some time.&lt;/p&gt;&lt;a name="eztoc60697_0_3" id="eztoc60697_0_3"&gt;&lt;/a&gt;&lt;h3&gt;Idea&lt;/h3&gt;&lt;p&gt;Force Shotwell to scroll all gallery&lt;/p&gt;&lt;a name="eztoc60697_0_4" id="eztoc60697_0_4"&gt;&lt;/a&gt;&lt;h3&gt;Solution&lt;/h3&gt;&lt;p&gt;Find id of Shotwell window:&lt;/p&gt;&lt;pre&gt;jaqb@linux:~$ xdotool search --onlyvisible --name shotwell
2098671
2099432
&lt;/pre&gt;&lt;p&gt;As you can see sometimes there are two of them (I don't know why)&lt;/p&gt;&lt;p&gt;Switch to that window an send &lt;i&gt;Page_Down&lt;/i&gt; / &lt;i&gt;Next&lt;/i&gt; key check.&lt;/p&gt;&lt;pre&gt;jaqb@linux:~$ xdotool windowactivate 2099432 --sync  key Next
&lt;/pre&gt;&lt;p&gt;Repeat many many (1000) times but give some time (22s) to refresh all visible pictures. I've prepared bash script:&lt;/p&gt;&lt;pre&gt;jaqb@linux:~$ cat ./shotwell-cache-refresh.bash
#!/bin/bash


xdotool windowactivate --sync $1
for x in `seq 1000`; do
        sleep 22
        xdotool key Next
done
EOF
&lt;/pre&gt;&lt;p&gt;After confirmation which identifier is good (2099432) you can run:&lt;/p&gt;&lt;pre&gt;jaqb@ubuntu-16:~$ ./shotwell-cache-refresh.bash 209943&lt;/pre&gt;&lt;p&gt;and do something more interesting than just typing Page_Down key for more than 6h.&lt;/p&gt;</description>
      <pubDate>Sun, 01 Sep 2024 14:18:20 GMT</pubDate>
    </item>
    <item>
      <title>Restore backpus file after BackupPC server crash</title>
      <link>http://www.jaqb.gda.pl/index.php/eng/Community/Blog/Restore-backpus-file-after-BackupPC-server-crash</link>
      <guid>http://www.jaqb.gda.pl/index.php/eng/Community/Blog/Restore-backpus-file-after-BackupPC-server-crash</guid>
      <description>&lt;p&gt;Once, after server crash, I've noticed I've &lt;a href="https://backuppc.github.io/backuppc/" target="_self"&gt;BackupPC&lt;/a&gt; shows no backups for some clients. Fortunately &lt;i&gt;/BackupPC/pc/*/&lt;/i&gt; still contains those backups.&lt;/p&gt;&lt;p&gt;To &lt;a href="https://github.com/backuppc/backuppc/wiki/Fix-a-corrupted-backups-file" target="_self"&gt;fix a corrupted backups file you&lt;/a&gt; should:&lt;/p&gt;
&lt;ul&gt;

&lt;li&gt;Stop BackupPC&lt;/li&gt;

&lt;/ul&gt;
&lt;pre&gt;/etc/init.d/backuppc stop
&lt;/pre&gt;
&lt;ul&gt;

&lt;li&gt;Run &lt;i&gt;BackupPC_fixupBackupSummary&lt;/i&gt; script as &lt;i&gt;backuppc&lt;/i&gt; user&lt;/li&gt;

&lt;/ul&gt;
&lt;pre&gt;sudo -u backuppc /usr/share/backuppc/bin/BackupPC_fixupBackupSummary
&lt;/pre&gt;
&lt;ul&gt;

&lt;li&gt;Start BackupPC&lt;/li&gt;

&lt;/ul&gt;
&lt;pre&gt;/etc/init.d/backuppc start
&lt;/pre&gt;&lt;p&gt;Now I can see all backups on &lt;i&gt;Host Summary&lt;/i&gt; page.&lt;/p&gt;</description>
      <pubDate>Thu, 29 Jun 2023 19:18:31 GMT</pubDate>
    </item>
    <item>
      <title>Detect presence of your cotenants (by his devices)</title>
      <link>http://www.jaqb.gda.pl/index.php/eng/Community/Blog/Detect-presence-of-your-cotenants-by-his-devices</link>
      <guid>http://www.jaqb.gda.pl/index.php/eng/Community/Blog/Detect-presence-of-your-cotenants-by-his-devices</guid>
      <description>&lt;p&gt;How to detect if there someone is home or if the house is empty.&lt;/p&gt;&lt;a name="eztoc60685_0_1" id="eztoc60685_0_1"&gt;&lt;/a&gt;&lt;h3&gt;Prerequisite&lt;/h3&gt;
&lt;ul&gt;

&lt;li&gt;OpenWRT router&lt;/li&gt;

&lt;li&gt;MQTT server&lt;/li&gt;

&lt;li&gt;Something to interpret and display data (Node-RED, Home Assistant, Domoticz, OpenHAB, etc.)&lt;/li&gt;

&lt;/ul&gt;
&lt;a name="eztoc60685_0_2" id="eztoc60685_0_2"&gt;&lt;/a&gt;&lt;h3&gt;On your OpenWRT router:&lt;/h3&gt;&lt;p&gt;Install &lt;i&gt;mosquitto-client&lt;/i&gt;. If you don't use encrypted communication use &lt;i&gt;-nossl&lt;/i&gt; version.&lt;/p&gt;&lt;pre&gt;opkg install mosquitto-client-ssl
&lt;/pre&gt;&lt;p&gt;Download &lt;a href="https://github.com/dersimn/owrtwifi2mqtt/" target="_self"&gt;presence_sensor&lt;/a&gt; script:&lt;/p&gt;&lt;pre&gt;wget -O /usr/bin/presence_report https://github.com/dersimn/owrtwifi2mqtt/raw/master/presence_report
&lt;/pre&gt;&lt;p&gt;make it executable:&lt;/p&gt;&lt;pre&gt;chmod u+x /usr/bin/presence_report
&lt;/pre&gt;&lt;p&gt;Now you can check if it works. Run command:&lt;/p&gt;&lt;pre&gt;root@OpenWrt:~# /usr/bin/presence_report event 192.168.1.8
presence_report, mode: event, MQTT server: 192.168.1.8&lt;/pre&gt;&lt;p&gt;Change 192.168.1.8 to address of your MQTT server. Turn WiFi on one of your devices (my was &lt;i&gt;e6:6a:ca:c8:38:e6&lt;/i&gt;).&lt;/p&gt;&lt;pre&gt;root@OpenWrt:~# /usr/bin/presence_report event 192.168.1.8
presence_report, mode: event, MQTT server: 192.168.1.8
Mac: e6:6a:ca:c8:38:e6 did del
Mac: e6:6a:ca:c8:38:e6 did new
&lt;/pre&gt;&lt;p&gt;as you can see there my device &amp;quot;left&amp;quot; (&lt;i&gt;del&lt;/i&gt;) and connect (&lt;i&gt;new&lt;/i&gt;) to Wi-Fi.&lt;/p&gt;&lt;p&gt;Press Ctrl-C to stop test.&lt;/p&gt;&lt;p&gt;To start this every time router boots I've added this line:&lt;/p&gt;&lt;pre&gt;(/usr/bin/presence_report event 192.168.1.8 &amp;gt;/dev/null 2&amp;gt;&amp;amp;1 )&amp;amp;
&lt;/pre&gt;&lt;p&gt;to &lt;i&gt;/etc/rc.local&lt;/i&gt; file. Of course before &amp;quot;&lt;i&gt;exit 0&lt;/i&gt;&amp;quot;.&lt;/p&gt;&lt;a name="eztoc60685_0_3" id="eztoc60685_0_3"&gt;&lt;/a&gt;&lt;h3&gt;Using data&lt;/h3&gt;&lt;p&gt;You can subscribe to &amp;quot;&lt;i&gt;owrtwifi/status/#&lt;/i&gt;&amp;quot; topics to receive messages in topic like this:&lt;/p&gt;&lt;pre&gt;owrtwifi/status/mac-e6-6a-ca-c8-38-e6/event
&lt;/pre&gt;&lt;p&gt;and payload &lt;i&gt;del&lt;/i&gt; or &lt;i&gt;new&lt;/i&gt;.&lt;/p&gt;&lt;p&gt;They are also messages in topic&lt;/p&gt;&lt;pre&gt;owrtwifi/status/mac-e6-6a-ca-c8-38-e6/dhcp-name&lt;/pre&gt;&lt;p&gt;and name of your device in payload.&lt;/p&gt;&lt;p&gt;I'm using Node-RED and check every device like this:&lt;/p&gt;&lt;pre&gt;context.devicescount=0;

if (!context.hasOwnProperty(&amp;quot;devices&amp;quot;)) {
    context.devices={};
}

if (msg.topic === &amp;quot;owrtwifi/status/mac-e6-6a-ca-c8-38-e6/event&amp;quot;) {


    if (msg.payload === &amp;quot;new&amp;quot;) {
        context.devices.PhoneNo1 = 1;
    }
    if (msg.payload === &amp;quot;del&amp;quot;) {
        context.devices.PhoneNo1 = 0;
    }
}
// repeat above to all of your mobile devices
if (msg.topic === &amp;quot;owrtwifi/status/mac-00-11-22-33-44-55/event&amp;quot;) {


    if (msg.payload === &amp;quot;new&amp;quot;) {
        context.devices.PhoneNo2 = 1;
    }
    if (msg.payload === &amp;quot;del&amp;quot;) {
        context.devices.PhoneNo2 = 0;
    }
}


let values = Object.values(context.devices);

values.forEach(function (value,index) {
    if (value == 1) {
        context.devicescount+=1;
    }
    return null;
});

if (context.devicescount&amp;gt;0) {
    node.send({payload:{&amp;quot;devices&amp;quot;:context.devicescount},topic:&amp;quot;mydevices&amp;quot;});
}
else {
    node.send({payload:{&amp;quot;devices&amp;quot;:context.devicescount,&amp;quot;house is empty&amp;quot;:1},topic:&amp;quot;mydevices&amp;quot;});
}
&lt;/pre&gt;&lt;p&gt;Maybe it's not the best way, but it works for me.&lt;/p&gt;&lt;p&gt;The most important value is &lt;i&gt;devicescount&lt;/i&gt; - the house is empty if equal to zero.&lt;/p&gt;&lt;p&gt;Of course this method cannot distinguish if you are in home or you just forgot your phone. It's obvious, but I want to be sure you know this too ;-)&lt;/p&gt;</description>
      <pubDate>Fri, 14 Apr 2023 19:50:55 GMT</pubDate>
    </item>
    <item>
      <title>VirtualBox is very slow when hosted on Windows 11 - HVCI</title>
      <link>http://www.jaqb.gda.pl/index.php/eng/Community/Blog/VirtualBox-is-very-slow-when-hosted-on-Windows-11-HVCI</link>
      <guid>http://www.jaqb.gda.pl/index.php/eng/Community/Blog/VirtualBox-is-very-slow-when-hosted-on-Windows-11-HVCI</guid>
      <description>&lt;p&gt;When you will try to use VirtualBox on Windows 11 you can notice that VM performance is very low.&lt;/p&gt;&lt;p&gt;One of the reason can be Windows Hypervisor-enforced Code Integrity (HVCI).&lt;/p&gt;&lt;p&gt;The easiest way to check if it active is via &lt;i&gt;Settings&lt;/i&gt; &amp;gt; &lt;i&gt;Update &amp;amp; Security&lt;/i&gt; &amp;gt; &lt;i&gt;Windows Security&lt;/i&gt; &amp;gt; &lt;i&gt;Device security&lt;/i&gt; &amp;gt; &lt;i&gt;Core isolation details&lt;/i&gt; &amp;gt; &lt;i&gt;Memory integrity&lt;/i&gt;.&lt;/p&gt;&lt;p&gt;To turn it off run &lt;i&gt;cmd&lt;/i&gt; as privileged user:&lt;/p&gt;&lt;pre&gt;bcdedit /set hypervisorlaunchtype off
&lt;/pre&gt;&lt;p&gt;and restart the system.&lt;/p&gt;&lt;p&gt;Be aware, that HVCI is turned on to improve system security - so turn if off &lt;b&gt;only&lt;/b&gt; when you &lt;b&gt;really&lt;/b&gt; need it.&lt;/p&gt;</description>
      <pubDate>Sun, 12 Jun 2022 20:27:01 GMT</pubDate>
    </item>
    <item>
      <title>Boot Memtest86+ from PXE</title>
      <link>http://www.jaqb.gda.pl/index.php/eng/Community/Blog/Boot-Memtest86-from-PXE</link>
      <guid>http://www.jaqb.gda.pl/index.php/eng/Community/Blog/Boot-Memtest86-from-PXE</guid>
      <description>&lt;p&gt;Download current binary from site &lt;a href="https://www.memtest.org/" target="_self"&gt;memtest.org&lt;/a&gt;. Now current version is &lt;a href="https://www.memtest.org/download/5.31b/memtest86+-5.31b.bin.zip" target="_self"&gt;5.31b&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;Extract file (in my case &lt;i&gt;memtest86+-5.31b.bin&lt;/i&gt;).&lt;/p&gt;&lt;p&gt;Rename it and place somewhere in TFTP server:&lt;/p&gt;&lt;pre&gt;mv /tmp/memtest86+-5.31b.bin /data/tftpboot/networkboot/memtest86+-5.31b
&lt;/pre&gt;&lt;p&gt;as in previous posts my TFTP root is &lt;i&gt;/data/tftpboot&lt;/i&gt; and I place all files in &lt;i&gt;networkboot&lt;/i&gt; directory.&lt;/p&gt;&lt;p&gt;Add menu entry in &lt;i&gt;pxelinux.cfg/default&lt;/i&gt; or as in my examples in &lt;i&gt;pxelinux.cfg/4c4c4544-0042-4410-8053-b2c04f43334a&lt;/i&gt; (these magic numbers are my test PC UUID):&lt;/p&gt;&lt;pre&gt;LABEL Memtest86-5.31
MENU LABEL Memtest86+ 5.31b
KERNEL /networkboot/memtest86+-5.31b
&lt;/pre&gt;</description>
      <pubDate>Thu, 06 May 2021 20:33:34 GMT</pubDate>
    </item>
    <item>
      <title>Send logs from ESX to remote syslog</title>
      <link>http://www.jaqb.gda.pl/index.php/eng/Community/Blog/Send-logs-from-ESX-to-remote-syslog</link>
      <guid>http://www.jaqb.gda.pl/index.php/eng/Community/Blog/Send-logs-from-ESX-to-remote-syslog</guid>
      <description>&lt;p&gt;On fresh install ESXi 7.0 U2 you just need two commands:&lt;/p&gt;&lt;pre&gt;esxcli system syslog config set --loghost='udp://192.168.1.28:514'
esxcli network firewall ruleset set --ruleset-id=syslog --enabled=true&lt;/pre&gt;&lt;p&gt;First line configures address of remote &lt;i&gt;syslog&lt;/i&gt; server - of course you have to change &lt;i&gt;192.168.1.28&lt;/i&gt; to yours server IP.&lt;/p&gt;&lt;p&gt;Second one opens required ports on firewall.&lt;/p&gt;</description>
      <pubDate>Fri, 19 Mar 2021 21:09:36 GMT</pubDate>
    </item>
    <item>
      <title>Gargoyle / OpenWRT change WPAD address - dhcp_option using UCI commands</title>
      <link>http://www.jaqb.gda.pl/index.php/eng/Community/Blog/Gargoyle-OpenWRT-change-WPAD-address-dhcp_option-using-UCI-commands</link>
      <guid>http://www.jaqb.gda.pl/index.php/eng/Community/Blog/Gargoyle-OpenWRT-change-WPAD-address-dhcp_option-using-UCI-commands</guid>
      <description>&lt;p&gt;My router configuration was:&lt;/p&gt;&lt;pre&gt;root@gargoyle:~# uci show dhcp.lan.dhcp_option
dhcp.lan.dhcp_option='252,http://wpad/wpad.dat' '6,192.168.1.28,192.168.1.4'
&lt;/pre&gt;&lt;p&gt;I would like to change &lt;a href="https://en.wikipedia.org/wiki/Web_Proxy_Auto-Discovery_Protocol" target="_self"&gt;WPAD&lt;/a&gt; address (option 252) to &lt;i&gt;wpad.lan&lt;/i&gt; so I've to remove (&lt;i&gt;del_list&lt;/i&gt;) old entry and add (&lt;i&gt;add_list&lt;/i&gt;) new one:&lt;/p&gt;&lt;pre&gt;root@gargoyle:~# uci del_list dhcp.lan.dhcp_option='252,http://wpad/wpad.dat'
root@gargoyle:~# uci add_list dhcp.lan.dhcp_option='252,http://wpad.lan/wpad.dat'
&lt;/pre&gt;&lt;p&gt;check, if everything is correct:&lt;/p&gt;&lt;pre&gt;root@gargoyle:~# uci show dhcp.lan.dhcp_option
dhcp.lan.dhcp_option='6,192.168.1.28,192.168.1.4' '252,http://wpad.lan/wpad.dat'
&lt;/pre&gt;&lt;p&gt;now, You can commit changes (write to &lt;i&gt;/etc/config/dhcp&lt;/i&gt; file) and restart &lt;i&gt;dnsmasq&lt;/i&gt; daemon:&lt;/p&gt;&lt;pre&gt;root@gargoyle:~# uci commit dhcp
root@gargoyle:~# /etc/init.d/dnsmasq restart
&lt;/pre&gt;&lt;p&gt;On client you can check again using &lt;i&gt;nmap&lt;/i&gt; command:&lt;/p&gt;&lt;pre&gt;[root@Optiplex745 ~]# nmap --script broadcast-dhcp-discover -e enp3s0
Starting Nmap 7.70 ( https://nmap.org ) at 2021-03-17 22:42 CET
Pre-scan script results:
| broadcast-dhcp-discover:
|   Response 1 of 1:
|     IP Offered: 192.168.1.249
|     DHCP Message Type: DHCPOFFER
|     Server Identifier: 192.168.1.4
|     IP Address Lease Time: 2m00s
|     Bootfile Name: undionly.kpxe\x00
|     Renewal Time Value: 1m00s
|     Rebinding Time Value: 1m45s
|     Subnet Mask: 255.255.255.0
|     Broadcast Address: 192.168.1.255
|     Router: 192.168.1.4
|     Domain Name: lan
|     WPAD: http://wpad.lan/wpad.dat
|_    Domain Name Server: 192.168.1.28, 192.168.1.4
WARNING: No targets were specified, so 0 hosts scanned.
Nmap done: 0 IP addresses (0 hosts up) scanned in 3.85 seconds
&lt;/pre&gt;</description>
      <pubDate>Wed, 17 Mar 2021 21:58:12 GMT</pubDate>
    </item>
    <item>
      <title>CentOS - Power Button - ACPI</title>
      <link>http://www.jaqb.gda.pl/index.php/eng/Community/Blog/CentOS-Power-Button-ACPI</link>
      <guid>http://www.jaqb.gda.pl/index.php/eng/Community/Blog/CentOS-Power-Button-ACPI</guid>
      <description>&lt;p&gt;Last two attempts (&lt;a href="/index.php/eng/Community/Blog/CentOS-Power-Button-Behaviour" target="_self"&gt;one&lt;/a&gt; and &lt;a href="/index.php/eng/Community/Blog/CentOS-Power-Button-Behaviour-headless-version" target="_self"&gt;two&lt;/a&gt;) to power off using just short press of power button didn't work or work only when when you are logged in.&lt;/p&gt;&lt;p&gt;Now I've just installed ACPI daemon:&lt;/p&gt;&lt;pre&gt;dnf install acpid
systemctl enable acpid
&lt;/pre&gt;&lt;p&gt;This finally works for my home server.&lt;/p&gt;</description>
      <pubDate>Fri, 29 Jan 2021 19:49:54 GMT</pubDate>
    </item>
    <item>
      <title>CentOS - Power Button Behaviour - headless version</title>
      <link>http://www.jaqb.gda.pl/index.php/eng/Community/Blog/CentOS-Power-Button-Behaviour-headless-version</link>
      <guid>http://www.jaqb.gda.pl/index.php/eng/Community/Blog/CentOS-Power-Button-Behaviour-headless-version</guid>
      <description>&lt;p&gt;My last resolution about &lt;a href="/index.php/eng/Community/Blog/CentOS-Power-Button-Behaviour" target="_self"&gt;power button&lt;/a&gt; works only when monitor is connected.&lt;/p&gt;&lt;p&gt;If you have headless server you can use systemd-logind service. By default (in CentOS 8) it do nothing. I've only found:&lt;/p&gt;&lt;pre&gt;systemd-logind[1373]: Power key pressed
&lt;/pre&gt;&lt;p&gt; in /var/log/messages.&lt;/p&gt;&lt;p&gt;To change this behaviour you can modify&lt;/p&gt;&lt;pre&gt;/etc/systemd/logind.conf
&lt;/pre&gt;&lt;p&gt;I've uncommented line&lt;/p&gt;&lt;pre&gt;#HandlePowerKey=poweroff
&lt;/pre&gt;&lt;p&gt;After thins restart service:&lt;/p&gt;&lt;pre&gt;systemctl restart systemd-logind
&lt;/pre&gt;&lt;p&gt;Now power key works on headless Linux server.&lt;/p&gt;</description>
      <pubDate>Sat, 02 Jan 2021 20:05:16 GMT</pubDate>
    </item>
    <item>
      <title>Diskless computer booting from PXE using MikroTik as DHCP server</title>
      <link>http://www.jaqb.gda.pl/index.php/eng/Community/Blog/Diskless-computer-booting-from-PXE-using-MikroTik-as-DHCP-server</link>
      <guid>http://www.jaqb.gda.pl/index.php/eng/Community/Blog/Diskless-computer-booting-from-PXE-using-MikroTik-as-DHCP-server</guid>
      <description>&lt;p&gt;Booting to PXE (or &lt;a href="https://www.ipxe.org/" target="_self"&gt;iPXE&lt;/a&gt;) using &lt;a href="http://www.thekelleys.org.uk/dnsmasq/doc.html" target="_self"&gt;dnsmasq&lt;/a&gt; is rather well documented &lt;a href="/index.php/eng/Community/Blog/Diskless-computer-using-ReadyNAS-and-Gargoyle-using-PXE-and-iSCSI" target="_self"&gt;also by Me ;-)&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;If You would like to use MikroTik it's not so easy (at least v6.43.2). I couldn't manage to boot iPXE using &lt;a href="https://www.ipxe.org/howto/chainloading" target="_self"&gt;chainloading&lt;/a&gt; because of the infinite loop with the DHCP server.&lt;/p&gt;&lt;p&gt;Booting from PXE is also not so obvious. You &lt;a href="https://blog.xentoo.info/2013/12/22/mikrotik-dhcp-and-pxe-boot/" target="_self"&gt;cannot&lt;/a&gt; set option 66 (next-server/Server-Name) nor 67 (boot-file/Bootfile-Name) in &amp;quot;&lt;i&gt;ip dhcp-server option&lt;/i&gt;&amp;quot;. Instead set &amp;quot;&lt;i&gt;Next Server&lt;/i&gt;&amp;quot; and &amp;quot;Boot File Name&amp;quot; in &amp;quot;&lt;i&gt;ip dhcp-server network&lt;/i&gt;&amp;quot;, so it should look like this:&lt;/p&gt;&lt;pre&gt;[admin@MikroTik] &amp;gt; /ip dhcp-server network print detail
Flags: D - dynamic
 0   ;;; defconf
     address=192.168.1.0/24 gateway=192.168.1.15 netmask=24
     dns-server=192.168.1.28,192.168.1.15 wins-server=&amp;quot;&amp;quot; ntp-server=&amp;quot;&amp;quot;
     caps-manager=&amp;quot;&amp;quot; domain=&amp;quot;lan&amp;quot; next-server=192.168.1.28
     boot-file-name=&amp;quot;pxelinux.0&amp;quot; dhcp-option=&amp;quot;&amp;quot; dhcp-option-set=&amp;quot;&amp;quot;
&lt;/pre&gt;</description>
      <pubDate>Sat, 12 Dec 2020 22:12:32 GMT</pubDate>
    </item>
  </channel>
</rss>
