]> git.proxmox.com Git - mirror_lxc.git/blame - src/lxc/network.h
lxc-attach: Add -R option to remount /sys and /proc when only partially attaching
[mirror_lxc.git] / src / lxc / network.h
CommitLineData
0ad19a3f 1/*
2 * lxc: linux Container library
3 *
4 * (C) Copyright IBM Corp. 2007, 2008
5 *
6 * Authors:
7 * Daniel Lezcano <dlezcano at fr.ibm.com>
8 *
9 * This library is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Lesser General Public
11 * License as published by the Free Software Foundation; either
12 * version 2.1 of the License, or (at your option) any later version.
13 *
14 * This library is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * Lesser General Public License for more details.
18 *
19 * You should have received a copy of the GNU Lesser General Public
20 * License along with this library; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 */
23#ifndef _network_h
24#define _network_h
25
0ad19a3f 26/*
27 * Convert a string mac address to a socket structure
28 */
29extern int lxc_convert_mac(char *macaddr, struct sockaddr *sockaddr);
30
31/*
32 * Move a device between namespaces
33 */
d472214b 34extern int lxc_netdev_move_by_index(int ifindex, pid_t pid);
0ad19a3f 35
36/*
37 * Delete a network device
38 */
b84f58b9
DL
39extern int lxc_netdev_delete_by_name(const char *name);
40extern int lxc_netdev_delete_by_index(int ifindex);
0ad19a3f 41
b9a5bb58 42/*
b84f58b9 43 * Change the device name
b9a5bb58 44 */
b84f58b9
DL
45extern int lxc_netdev_rename_by_name(const char *oldname, const char *newname);
46extern int lxc_netdev_rename_by_index(int ifindex, const char *newname);
b9a5bb58 47
0ad19a3f 48/*
d472214b 49 * Set the device network up or down
0ad19a3f 50 */
d472214b
DL
51extern int lxc_netdev_up(const char *name);
52extern int lxc_netdev_down(const char *name);
0ad19a3f 53
75d09f83
DL
54/*
55 * Change the mtu size for the specified device
56 */
d472214b 57extern int lxc_netdev_set_mtu(const char *name, int mtu);
75d09f83 58
0ad19a3f 59/*
d472214b 60 * Create a virtual network devices
0ad19a3f 61 */
497353b6 62extern int lxc_veth_create(const char *name1, const char *name2);
e892973e 63extern int lxc_macvlan_create(const char *master, const char *name, int mode);
26c39028
JHS
64extern int lxc_vlan_create(const char *master, const char *name, ushort vid);
65
0ad19a3f 66/*
67 * Activate forwarding
68 */
497353b6 69extern int lxc_ip_forward_on(const char *name, int family);
0ad19a3f 70
71/*
72 * Disable forwarding
73 */
497353b6 74extern int lxc_ip_forward_off(const char *name, int family);
0ad19a3f 75
76/*
77 * Set ip address
78 */
1f1b18e7
DL
79extern int lxc_ipv6_addr_add(int ifindex, struct in6_addr *addr,
80 struct in6_addr *mcast,
81 struct in6_addr *acast, int prefix);
82
83extern int lxc_ipv4_addr_add(int ifindex, struct in_addr *addr,
84 struct in_addr *bcast, int prefix);
0ad19a3f 85
19a26f82
MK
86/*
87 * Get ip address
88 */
89extern int lxc_ipv4_addr_get(int ifindex, struct in_addr **res);
90extern int lxc_ipv6_addr_get(int ifindex, struct in6_addr **res);
91
f8fee0e2
MK
92/*
93 * Set default route.
94 */
95extern int lxc_ipv4_gateway_add(int ifindex, struct in_addr *gw);
96extern int lxc_ipv6_gateway_add(int ifindex, struct in6_addr *gw);
97
0ad19a3f 98/*
99 * Attach an interface to the bridge
100 */
497353b6 101extern int lxc_bridge_attach(const char *bridge, const char *ifname);
0ad19a3f 102
0ad19a3f 103/*
104 * Create default gateway
105 */
497353b6
DL
106extern int lxc_route_create_default(const char *addr, const char *ifname,
107 int gateway);
0ad19a3f 108
109/*
110 * Delete default gateway
111 */
497353b6
DL
112extern int lxc_route_delete_default(const char *addr, const char *ifname,
113 int gateway);
0ad19a3f 114
115/*
116 * Activate neighbor proxying
117 */
497353b6 118extern int lxc_neigh_proxy_on(const char *name, int family);
0ad19a3f 119
120/*
121 * Disable neighbor proxying
122 */
497353b6 123extern int lxc_neigh_proxy_off(const char *name, int family);
0ad19a3f 124
125#endif