我是靠谱客的博主 开朗短靴,最近开发中收集的这篇文章主要介绍linux 启动程序-p,Linux应用程序开发笔记:配置linuxptp开机启动(ubuntu gPTP),觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

参考文献:

1、安装linuxptp

sudo apt-get install linuxptp

2、下载linuxptp源码:

git clone git://git.code.sf.net/p/linuxptp/code linuxptp

cd linuxptp

cp configs/gPTP.cfg ./

vim gPTP.cfg

添加:

p2p_dst_mac01:1B:19:00:00:00

修改:

neighborPropDelayThresh80000

ptp_dst_mac01:1B:19:00:00:00

3、参考README配置:

sudo vim /usr/share/doc/linuxptp/README.Debian

1. Default configuration

The default configuration can be found in /etc/linuxptp/ptp4l.conf.

This is the default.cfg provided by the upstream source.

2. Systemd services

The service ptp4l invokes ptp4l on eth0 by default. To adjust the

parameters, follow these steps:

1. create a directory /etc/systemd/system/ptp4l.service.d

2. place a file with its name ending in .conf there

3. put these lines into the file, with the parameters adjusted to your needs:

[Service]

ExecStart=

ExecStart=/usr/sbin/ptp4l -f /etc/linuxptp/ptp4l.conf -i eth0

参考示例:

/home/amine/linuxptp/gPTP.cfg

#

# 802.1AS example configuration containing those attributes which

# differ from the defaults.  See the file, default.cfg, for the

# complete list of available options.

#

[global]

gmCapable        1

priority1        248

priority2        248

logAnnounceInterval    0

logSyncInterval        -3

syncReceiptTimeout    3

neighborPropDelayThresh    80000

min_neighbor_prop_delay    -20000000

assume_two_step        1

path_trace_enabled    1

follow_up_info        1

transportSpecific    0x1

ptp_dst_mac        01:1B:19:00:00:00

p2p_dst_mac        01:1B:19:00:00:00

network_transport    L2

delay_mechanism        P2P

/etc/systemd/system/ptp4l.service.d/gPTP.conf

[Service]

ExecStart=

ExecStart=/usr/sbin/ptp4l -2 -f /home/amine/linuxptp/gPTP.cfg -i eth0.10 -i eth0.20 -i eth0.30 -i eth0.40 -i eth0.50 -i eth0.60 -i eth0.70 -i eth0.80 eth0.90 -i eth0.100 -i eth0.110 -i eth0.120 -i eth0.130 -i eth0.140 -i eth0.150 -i eth0.160 -i eth0.170 -i eth0.180 -q -l 6 -S

特殊说明:

我配置的VLAN网卡比较多,导致ptp4l.service启动错误,我修改了

/lib/systemd/system/ptp4l.service

的 [Unit] 增加

After=network.target

[Unit]

Description=Precision Time Protocol (PTP) service

Documentation=man:ptp4l

After=network.target

最后

以上就是开朗短靴为你收集整理的linux 启动程序-p,Linux应用程序开发笔记:配置linuxptp开机启动(ubuntu gPTP)的全部内容,希望文章能够帮你解决linux 启动程序-p,Linux应用程序开发笔记:配置linuxptp开机启动(ubuntu gPTP)所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(37)

评论列表共有 0 条评论

立即
投稿
返回
顶部