1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70
|
/* -*- Mode: C; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */
/* nm-ssh-service - ssh integration with NetworkManager
*
* Copyright (C) 2013 Dan Fruehauf <malkodan@gmail.com>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*
*/
#ifndef NM_SSH_SERVICE_DEFINES_H
#define NM_SSH_SERVICE_DEFINES_H
#define NM_DBUS_SERVICE_SSH "org.freedesktop.NetworkManager.ssh"
#define NM_DBUS_INTERFACE_SSH "org.freedesktop.NetworkManager.ssh"
#define NM_DBUS_PATH_SSH "/org/freedesktop/NetworkManager/ssh"
#define YES "yes"
#define NO "no"
#define IS_YES(x) (!strncmp (x, YES, strlen(YES)))
#define NM_SSH_KEY_REMOTE "remote"
#define NM_SSH_KEY_REMOTE_IP "remote-ip"
#define NM_SSH_KEY_LOCAL_IP "local-ip"
#define NM_SSH_KEY_NETMASK "netmask"
#define NM_SSH_KEY_PORT "port"
#define NM_SSH_KEY_TUNNEL_MTU "tunnel-mtu"
#define NM_SSH_KEY_REMOTE_DEV "remote-dev"
#define NM_SSH_KEY_SSH_AUTH_SOCK "ssh-auth-sock"
#define NM_SSH_KEY_TAP_DEV "tap-dev"
#define NM_SSH_KEY_REMOTE_USERNAME "remote-username"
#define NM_SSH_KEY_SUDO "sudo"
#define NM_SSH_KEY_NO_REMOTE_COMMAND "no-remote-command"
#define NM_SSH_KEY_NO_TUNNEL_INTERFACE "no-tunnel-interface"
#define NM_SSH_KEY_SOCKS_BIND_ADDRESS "socks-bind-address"
#define NM_SSH_KEY_LOCAL_BIND_ADDRESS "local-bind-address"
#define NM_SSH_KEY_REMOTE_BIND_ADDRESS "remote-bind-address"
#define NM_SSH_KEY_IP_6 "ip-6"
#define NM_SSH_KEY_REMOTE_IP_6 "remote-ip-6"
#define NM_SSH_KEY_LOCAL_IP_6 "local-ip-6"
#define NM_SSH_KEY_NETMASK_6 "netmask-6"
#define NM_SSH_KEY_AUTH_TYPE "auth-type"
#define NM_SSH_KEY_KEY_FILE "key-file"
#define NM_SSH_KEY_PASSWORD "password"
#define NM_SSH_DEFAULT_PORT 22
#define NM_SSH_DEFAULT_MTU 1500
#define NM_SSH_DEFAULT_REMOTE_DEV 100
#define NM_SSH_DEFAULT_REMOTE_USERNAME "root"
#define NM_SSH_DEFAULT_NO_TUNNEL_INTERFACE "dummy0"
#define NM_SSH_DEFAULT_SOCKS_BIND_ADDRESS "localhost:8080"
#define NM_SSH_DEFAULT_LOCAL_BIND_ADDRESS "localhost:8080:localhost:8080"
#define NM_SSH_DEFAULT_REMOTE_BIND_ADDRESS "localhost:8080:localhost:8080"
#define NM_SSH_AUTH_TYPE_SSH_AGENT "ssh-agent"
#define NM_SSH_AUTH_TYPE_PASSWORD "password"
#define NM_SSH_AUTH_TYPE_KEY "key"
#endif /* NM_SSH_SERVICE_DEFINES_H */
|