~ubuntu-branches/ubuntu/saucy/ifupdown/saucy-proposed

« back to all changes in this revision

Viewing changes to can.defn

  • Committer: Package Import Robot
  • Author(s): Stéphane Graber
  • Date: 2013-08-26 16:56:45 UTC
  • mfrom: (107.1.3 saucy)
  • Revision ID: package-import@ubuntu.com-20130826165645-0ewzt2yfckue8phe
Tags: 0.7.44ubuntu1
* Merge from Debian. Remaining changes:
  - If the /etc/NetworkManager/NetworkManager.conf file is present
    but doesn't have the "ifupdown:managed" the previous upload instructed
    the iniparser to return -1, which evaluates to TRUE. We instead instruct
    it to return 0, as we shouldn't prevent ifupdown from managing the
    interfaces in that case, as NM won't either. (LP: #281984)
  - Remove /etc/default/networking as the upstart job doesn't use it and
    can't really use it without some significant changes (support exclusion
    lists in all the upstart jobs).
  - Add transition code for moving /etc/init.d/networking from netbase
    to ifupdown.
  - Make /etc/init.d/networking exit 1 immediately on Upstart system
    with an error message telling the user to use 'service'.
  - Always call dhclient with -1, Ubuntu carries a patch so that renewal
    won't time out.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
address_family can
 
2
architecture linux
 
3
 
 
4
method static
 
5
  description
 
6
    This method may be used to setup an Controller Area Network (CAN)
 
7
    interface. It requires the the *ip* command from the *iproute* package.
 
8
 
 
9
  options
 
10
    bitrate bitrate             -- bitrate (1..1000000) *required*
 
11
    samplepoint samplepoint     -- sample point (0.000..0.999)
 
12
    loopback loopback           -- loop back CAN Messages (on|off)
 
13
    listenonly listenonly       -- listen only mode (on|off)
 
14
    triple triple               -- activate triple sampling (on|off)
 
15
    oneshot oneshot             -- one shot mode (on|off)
 
16
    berr berr                   -- activate berr reporting (on|off) 
 
17
 
 
18
  up
 
19
    ip link set %iface% type can bitrate %bitrate%
 
20
    [[ ip link set %iface% type can loopback %loopback% ]]
 
21
    [[ ip link set %iface% type can listen-only %listenonly% ]]
 
22
    [[ ip link set %iface% type can triple-sampling %triple% ]]
 
23
    [[ ip link set %iface% type can one-shot %oneshot% ]]
 
24
    [[ ip link set %iface% type can berr-reporting %berr% ]]
 
25
    ip link set %iface% up
 
26
 
 
27
  down
 
28
    ip link set %iface% down