【米尔-瑞萨RZ/G2UL开发板-试用评测】MYD-YG2UL开发板测评(二)
<div class='showpostmsg'><div> </div><h3>2.3.3 网络测试</h3>
<h4>2.3.3.1 Ethernet</h4>
<div>MYD-YG2UL开发板配备2个千兆网口,还有一个WiFi,网速测试方法都是一样的,笔者这是测试的千兆网口(ETH0)。</div>
<div>这里使用系统自带的Iperf3工具测试TCP带宽。</div>
<div>Iperf3 是一个网络性能测试工具。Iperf3可以测试TCP和UDP带宽质量。Iperf3可以测量最大TCP带宽和UDP特性。</div>
<div>TCP测试:</div>
<div>服务器执行:#iperf3 -s</div>
<div>客户端执行:#iperf3 -c host -i 1 -w 1M 其中-w表示TCP window size,host需替换成服务器地址。</div>
<div>下面以TCP为例进行测试,这里测试的是ETH0。</div>
<div>先打开服务器:</div>
<div># iperf3 -s</div>
<div></div>
<div>然后使用SSH登录,新建一个终端,再次打开一个终端:</div>
<div># iperf3 -c 192.168.1.5 -i 1</div>
<div></div>
<div>速度还是可以的。</div>
<h4>2.3.3.2 WIFI</h4>
<div>MYD-YG2UL 板载 Fn-Link 6131E-U WIFI 模块,当前不支持 STA 和 AP 同时工作。</div>
<div>首先检查WiFi节点。</div>
<div># ifconfig wlan0</div>
<div></div>
<div>可以手动连接WiFi热点。</div>
<p><strong>STA </strong><strong>模式脚本手动连接</strong><strong> WIFI </strong><strong>热点</strong><br />
# ifup_wifi_sta -ssid wifi_name -passwd 12345678<br />
然后使用udhcpc获取 WIFI IP 地址<br />
# udhcpc -i wlan0<br />
# ifconfig wlan0<br />
<br />
为了方便,笔者下面介绍STA 开机自动连接 WIFI 热点。</p>
<p><strong>STA </strong><strong>开机自动连接</strong><strong> WIFI </strong><strong>热点</strong></p>
<div>通过上述使用 ifup_wifi_sta 连接 wifi 后,会在/etc/wpa_supplicant/目录下生成一 个新文件。</div>
<div></div>
<div>只要使能对应的服务即可开机连接 WIFI。</div>
<div># systemctl enable wpa_supplicant@wlan0.service</div>
<div></div>
<div>然后配置开机自动获取IP地址,在/lib/systemd/network/目录下创建 11-wlan0.network。</div>
<div>#vi /etc/systemd/network/11-wlan0.network</div>
<div># cat /etc/systemd/network/11-wlan0.network</div>
<div></div>
<div>Name=wlan0</div>
<div></div>
<div>DHCP=yes</div>
<div></div>
<div>RouteMetric=20</div>
<div>再次重启开发板,Fn-Link 6131E-U WIFI 模块就已经获取到 IP 了。</div>
<h3> </h3>
<div> </div>
</div><script> var loginstr = '<div class="locked">查看本帖全部内容,请<a href="javascript:;" style="color:#e60000" class="loginf">登录</a>或者<a href="https://bbs.eeworld.com.cn/member.php?mod=register_eeworld.php&action=wechat" style="color:#e60000" target="_blank">注册</a></div>';
if(parseInt(discuz_uid)==0){
(function($){
var postHeight = getTextHeight(400);
$(".showpostmsg").html($(".showpostmsg").html());
$(".showpostmsg").after(loginstr);
$(".showpostmsg").css({height:postHeight,overflow:"hidden"});
})(jQuery);
} </script><script type="text/javascript">(function(d,c){var a=d.createElement("script"),m=d.getElementsByTagName("script"),eewurl="//counter.eeworld.com.cn/pv/count/";a.src=eewurl+c;m.parentNode.insertBefore(a,m)})(document,523)</script> <p>再次重启开发板,Fn-Link 6131E-U WIFI 模块就已经获取到 IP 了。</p>
<p>使用自己连接,使用wifi,方便方便。</p>
页:
[1]