Installing a VPN Server in Mac OS X

Has anyone tried to install a VPN server successfully in mac os x?
I was able to get webmin installed successfully, and I know on my linux distros webmin automatically detects if a VPN server is installed (such as poptop) or at least if the option is there, but in mac os x (not the server version) there is nothing listed.
Anyone know of any other VPN servers that could be installed in mac os x, or even anything for BSD that could be compiled from source?

I run the server on PowerPC and use clients on both PowerPC and Intel. Admittedly, my wife has run off the the MBP so my use on the Intel is limited these days.
If you want to route onto the network, you'll have to create routes after the TUN/TAP interface is up. The OS X FAQs on OpenVPN detail various ways to do this.
# Sample OpenVPN 2.0 config file for #
# multi-client server. #
# This file is for the server side #
# of a many-clients <-> one-server #
# OpenVPN configuration. #
# OpenVPN also supports #
# single-machine <-> single-machine #
# configurations (See the Examples page #
# on the web site for more info). #
# This config should work on Windows #
# or Linux/BSD systems. Remember on #
# Windows to quote pathnames and use #
# double backslashes, e.g.: #
# "C:\\Program Files\\OpenVPN\\config\\foo.key" #
# Comments are preceded with '#' or ';' #
# Which local IP address should OpenVPN
# listen on? (optional)
;local 192.168.2.253
# Which TCP/UDP port should OpenVPN listen on?
# If you want to run multiple OpenVPN instances
# on the same machine, use a different port
# number for each one. You will need to
# open up this port on your firewall.
port 443
# TCP or UDP server?
;proto tcp
proto tcp
# "dev tun" will create a routed IP tunnel,
# "dev tap" will create an ethernet tunnel.
# Use "dev tap0" if you are ethernet bridging
# and have precreated a tap0 virtual interface
# and bridged it with your ethernet interface.
# If you want to control access policies
# over the VPN, you must create firewall
# rules for the the TUN/TAP interface.
# On non-Windows systems, you can give
# an explicit unit number, such as tun0.
# On Windows, use "dev-node" for this.
# On most systems, the VPN will not function
# unless you partially or fully disable
# the firewall for the TUN/TAP interface.
;dev tap
dev tun
# Windows needs the TAP-Win32 adapter name
# from the Network Connections panel if you
# have more than one. On XP SP2 or higher,
# you may need to selectively disable the
# Windows firewall for the TAP adapter.
# Non-Windows systems usually don't need this.
;dev-node MyTap
# SSL/TLS root certificate (ca), certificate
# (cert), and private key (key). Each client
# and the server must have their own cert and
# key file. The server and all clients will
# use the same ca file.
# See the "easy-rsa" directory for a series
# of scripts for generating RSA certificates
# and private keys. Remember to use
# a unique Common Name for the server
# and each of the client certificates.
# Any X509 key management system can be used.
# OpenVPN can also use a PKCS #12 formatted key file
# (see "pkcs12" directive in man page).
ca /etc/openvpn/key/ca.crt
cert /etc/openvpn/key/server.crt
key /etc/openvpn/key/server.key
# Diffie hellman parameters.
# Generate your own with:
# openssl dhparam -out dh1024.pem 1024
# Substitute 2048 for 1024 if you are using
# 2048 bit keys.
dh /etc/openvpn/key/dh1024.pem
# Configure server mode and supply a VPN subnet
# for OpenVPN to draw client addresses from.
# The server will take 10.8.0.1 for itself,
# the rest will be made available to clients.
# Each client will be able to reach the server
# on 10.8.0.1. Comment this line out if you are
# ethernet bridging. See the man page for more info.
server 169.254.1.0 255.255.255.0
# Maintain a record of client <-> virtual IP address
# associations in this file. If OpenVPN goes down or
# is restarted, reconnecting clients can be assigned
# the same virtual IP address from the pool that was
# previously assigned.
ifconfig-pool-persist ipp.txt
# Configure server mode for ethernet bridging.
# You must first use your OS's bridging capability
# to bridge the TAP interface with the ethernet
# NIC interface. Then you must manually set the
# IP/netmask on the bridge interface, here we
# assume 10.8.0.4/255.255.255.0. Finally we
# must set aside an IP range in this subnet
# (start=10.8.0.50 end=10.8.0.100) to allocate
# to connecting clients. Leave this line commented
# out unless you are ethernet bridging.
;server-bridge 10.8.0.4 255.255.255.0 10.8.0.50 10.8.0.100
;server-bridge 192.168.2.1 255.255.255.0 192.168.2.240 192.168.2.245
# Push routes to the client to allow it
# to reach other private subnets behind
# the server. Remember that these
# private subnets will also need
# to know to route the OpenVPN client
# address pool (10.8.0.0/255.255.255.0)
# back to the OpenVPN server.
push "route 10.0.0.0 255.255.255.0"
;push "route 192.168.20.0 255.255.255.0"
# To assign specific IP addresses to specific
# clients or if a connecting client has a private
# subnet behind it that should also have VPN access,
# use the subdirectory "ccd" for client-specific
# configuration files (see man page for more info).
# EXAMPLE: Suppose the client
# having the certificate common name "Thelonious"
# also has a small subnet behind his connecting
# machine, such as 192.168.40.128/255.255.255.248.
# First, uncomment out these lines:
;client-config-dir ccd
;route 192.168.40.128 255.255.255.248
# Then create a file ccd/Thelonious with this line:
# iroute 192.168.40.128 255.255.255.248
# This will allow Thelonious' private subnet to
# access the VPN. This example will only work
# if you are routing, not bridging, i.e. you are
# using "dev tun" and "server" directives.
# EXAMPLE: Suppose you want to give
# Thelonious a fixed VPN IP address of 10.9.0.1.
# First uncomment out these lines:
;client-config-dir ccd
;route 10.9.0.0 255.255.255.252
# Then add this line to ccd/Thelonious:
# ifconfig-push 10.9.0.1 10.9.0.2
# Suppose that you want to enable different
# firewall access policies for different groups
# of clients. There are two methods:
# (1) Run multiple OpenVPN daemons, one for each
# group, and firewall the TUN/TAP interface
# for each group/daemon appropriately.
# (2) (Advanced) Create a script to dynamically
# modify the firewall in response to access
# from different clients. See man
# page for more info on learn-address script.
;learn-address ./script
# If enabled, this directive will configure
# all clients to redirect their default
# network gateway through the VPN, causing
# all IP traffic such as web browsing and
# and DNS lookups to go through the VPN
# (The OpenVPN server machine may need to NAT
# the TUN/TAP interface to the internet in
# order for this to work properly).
# CAVEAT: May break client's network config if
# client's local DHCP server packets get routed
# through the tunnel. Solution: make sure
# client's local DHCP server is reachable via
# a more specific route than the default route
# of 0.0.0.0/0.0.0.0.
;push "redirect-gateway"
# Certain Windows-specific network settings
# can be pushed to clients, such as DNS
# or WINS server addresses. CAVEAT:
# http://openvpn.net/faq.html#dhcpcaveats
;push "dhcp-option DNS 10.8.0.1"
;push "dhcp-option WINS 10.8.0.1"
# Uncomment this directive to allow different
# clients to be able to "see" each other.
# By default, clients will only see the server.
# To force clients to only see the server, you
# will also need to appropriately firewall the
# server's TUN/TAP interface.
;client-to-client
# Uncomment this directive if multiple clients
# might connect with the same certificate/key
# files or common names. This is recommended
# only for testing purposes. For production use,
# each client should have its own certificate/key
# pair.
# IF YOU HAVE NOT GENERATED INDIVIDUAL
# CERTIFICATE/KEY PAIRS FOR EACH CLIENT,
# EACH HAVING ITS OWN UNIQUE "COMMON NAME",
# UNCOMMENT THIS LINE OUT.
;duplicate-cn
# The keepalive directive causes ping-like
# messages to be sent back and forth over
# the link so that each side knows when
# the other side has gone down.
# Ping every 10 seconds, assume that remote
# peer is down if no ping received during
# a 120 second time period.
keepalive 10 120
# For extra security beyond that provided
# by SSL/TLS, create an "HMAC firewall"
# to help block DoS attacks and UDP port flooding.
# Generate with:
# openvpn --genkey --secret ta.key
# The server and each client must have
# a copy of this key.
# The second parameter should be '0'
# on the server and '1' on the clients.
;tls-auth ta.key 0 # This file is secret
# Select a cryptographic cipher.
# This config item must be copied to
# the client config file as well.
;cipher BF-CBC # Blowfish (default)
;cipher AES-128-CBC # AES
;cipher DES-EDE3-CBC # Triple-DES
# Enable compression on the VPN link.
# If you enable it here, you must also
# enable it in the client config file.
comp-lzo
# The maximum number of concurrently connected
# clients we want to allow.
;max-clients 100
# It's a good idea to reduce the OpenVPN
# daemon's privileges after initialization.
# You can uncomment this out on
# non-Windows systems.
;user nobody
;group nobody
# The persist options will try to avoid
# accessing certain resources on restart
# that may no longer be accessible because
# of the privilege downgrade.
persist-key
persist-tun
# Output a short status file showing
# current connections, truncated
# and rewritten every minute.
status /var/log/openvpn-status.log
# By default, log messages will go to the syslog (or
# on Windows, if running as a service, they will go to
# the "\Program Files\OpenVPN\log" directory).
# Use log or log-append to override this default.
# "log" will truncate the log file on OpenVPN startup,
# while "log-append" will append to it. Use one
# or the other (but not both).
;log openvpn.log
;log-append openvpn.log
# Set the appropriate level of log
# file verbosity.
# 0 is silent, except for fatal errors
# 4 is reasonable for general usage
# 5 and 6 can help to debug connection problems
# 9 is extremely verbose
verb 3
# Silence repeating messages. At most 20
# sequential messages of the same message
# category will be output to the log.
;mute 20

Similar Messages

  • VPN server on Mac OS X client

    This may sound crazy,
    But is it possible to run the VPN server on a regular Mac OS X Tiger client?
    I'd like to run a lightweight server VPN at home to help access my home network from the outside world. But, I don't want to run the full blown OS X server on any of my machines.

    The client version of Mac OS X 10.3 and 10.4 contains vpnd, but you will need to set it up yourself; see here and here for information on this task.
    (16487)

  • Help with configuration vpn server on mac os

    Does anyone know a step by step way to configurtae a vpn server on the normal snowleopard
    i tried ivpn but i cannot connect to the L2TP vpn server ( i configurated it as described )
    does anyone has a solution to try out ivpn
    or is there any alternativ way for ivpn

    Does anyone know a step by step way to configurtae a vpn server on the normal snowleopard
    i tried ivpn but i cannot connect to the L2TP vpn server ( i configurated it as described )
    does anyone has a solution to try out ivpn
    or is there any alternativ way for ivpn

  • Installing Indesign CC Server on Mac fails

    Hi,
    I've multiple Adobe IDs:
    Adobe-ID1 for Company 1/AEDP
    Adobe-ID2 for Company 2/CC Membership
    I've downloaded Indesign CC Server from AEDP (Adobe-ID1) and tried to install using the Serial number from AEDP and the Adobe-ID1.
    In the options dialog of the install, I can't select the ID Server components and it has a warning icon with the title "Required components are disabled".
    I tried to use the second login (Adobe-ID2) or install it as a trial version, but I get the same behaviour.
    The installation failed on two Macs (10.9.5 and 10.10.2) with CC and the name of the installer file is: InDesignServer_9_LS18.dmg. Is anything missing and has to be installed upfront?
    Any recommendations or tips to solve the issue?
    Patrick

    True, I mixed the commands as I wasn't aware that a version 10 of Indesign CC Server exists. I used the latest of AEDP.
    OK, I also executed the version 9 (CC) commands and tried to install the Indesign CC Server. The installation failed with the same error!
    Maybe I have for access to the latest of Indesign Server (version 10 / CC 2014)?
    PS: Installation of Indesign Server (CC / version 9) with commands of version 10 (CC 2014) worked without problems.
    Patrick

  • How to install OS X Server on Mac Mini w/o external display?

    I have:
    Brand new mac mini (Mountain lion still in start-up mode)
    OId mac mini
    Macbook pro
    Network & firewire cable
    Time Capsule
    Remote desktop
    I don't have
    An external display
    I want to setup the new mac mini as a server, and migrate my data from a time capsule back up of an older mac mini.
    How can I do this without an external display? I read that you can just plug the new Mac Mini into the network and remote desktop will see it in set-up mode, but this doesn't work.
    Thanks!

    If you have no external keyboard (even a Windows USB one would do) then you have no way to boot the new Mac mini in Target Disk Mode.
    If you have a keyboard and can boot the Mac mini in Target Disk Mode then you can do the following -
    Boot the new Mac mini in Target Disk Mode by holding down the T key
    Connect it via either FireWire or Thunderbolt cable to the MacBook Pro
    Tell the MacBook Pro to boot from the Mac mini which will act as external hard disk drive
    The MacBook Pro screen and keyboard will then be in use but you will be configuring the software on the Mac mini hard disk
    You can then turn on Screen Sharing
    Shutdown the Mac mini and thereafter do everything via Remote Control

  • How can local user send message to other user via OSX server in mac maverick

    I just install OS X server in mac mavericks and enable services such as message, DNS, VPN, etc. I also create local users and local network users. I add some local users from OSX server to Message app in order to message to server, but I cannot send any message to those user, even Bonjour is available but I cannot use it to send message in local network.
    I already followed all Server Help in Messages like in this image:
    I try to access to my local OS X server via IP address by using other PC, Mac and iPhone and I can get this interface:
    I already try in iPhone to send message to local user in OS X server after accessing to OS X server via IP Address, but I don't know how local user can get that message and I see nothing in message_archives of message data of server. Therefore, how each user in OSX server can message to each other across OSX server ? Does Admin have to write some codes or make configuration for providing message services to those users ?
    Message was edited by: chhanmalin

    Client users need to use XMPP client app to log in to server with account name like in server , then user can send message to other users in server. Client users can use iphone, pc, or mac.

  • Can't connect to vpn server

    I am now setting up the vpn server using mac mini with Mac OSX v 10.7 Lion Server. After setting up, I found that I can't make connection.
    When I check out the console, I find that the vpnd continue assign IP address to the same client and then hungup as follows:
    Is there any solution?
    11/17/11 2:31:56.180 PM racoon: IKE Packet: receive success. (Responder, Main-Mode message 1).
    11/17/11 2:31:56.181 PM racoon: IKE Packet: transmit success. (Responder, Main-Mode message 2).
    11/17/11 2:31:56.206 PM racoon: IKE Packet: receive success. (Responder, Main-Mode message 3).
    11/17/11 2:31:56.225 PM racoon: IKE Packet: transmit success. (Responder, Main-Mode message 4).
    11/17/11 2:31:56.241 PM racoon: IKEv1 Phase1 AUTH: success. (Responder, Main-Mode Message 5).
    11/17/11 2:31:56.241 PM racoon: IKE Packet: receive success. (Responder, Main-Mode message 5).
    11/17/11 2:31:56.241 PM racoon: IKEv1 Phase1 Responder: success. (Responder, Main-Mode).
    11/17/11 2:31:56.241 PM racoon: IKE Packet: transmit success. (Responder, Main-Mode message 6).
    11/17/11 2:31:56.241 PM racoon: IPSec Phase1 established (Initiated by peer).
    11/17/11 2:31:57.098 PM racoon: IPSec Phase2 started (Initiated by me).
    11/17/11 2:31:57.098 PM racoon: IKE Packet: transmit success. (Initiator, Quick-Mode message 1).
    11/17/11 2:31:57.102 PM racoon: IPSec Phase2 started (Initiated by peer).
    11/17/11 2:31:57.102 PM racoon: IKE Packet: receive success. (Responder, Quick-Mode message 1).
    11/17/11 2:31:57.102 PM racoon: IKE Packet: transmit success. (Responder, Quick-Mode message 2).
    11/17/11 2:31:57.104 PM racoon: IKE Packet: receive success. (Responder, Quick-Mode message 3).
    11/17/11 2:31:57.105 PM racoon: IKEv1 Phase2 Responder: success. (Responder, Quick-Mode).
    11/17/11 2:31:57.105 PM racoon: IPSec Phase2 established (Initiated by peer).
    11/17/11 2:31:57.157 PM vpnd: Incoming call... Address given to client = 137.189.141.137
    11/17/11 2:31:57.157 PM com.apple.ppp.l2tp: 2011-11-17 14:31:57 CST Incoming call... Address given to client = 137.189.141.137
    11/17/11 2:31:57.180 PM pppd: pppd 2.4.2 (Apple version 560.13) started by root, uid 0
    11/17/11 2:31:57.181 PM pppd: L2TP incoming call in progress from '137.189.141.146'...
    11/17/11 2:31:58.156 PM vpnd: Incoming call... Address given to client = 137.189.141.138
    11/17/11 2:31:58.156 PM com.apple.ppp.l2tp: 2011-11-17 14:31:58 CST Incoming call... Address given to client = 137.189.141.138
    11/17/11 2:31:58.177 PM pppd: pppd 2.4.2 (Apple version 560.13) started by root, uid 0
    11/17/11 2:31:58.179 PM pppd: L2TP incoming call in progress from '137.189.141.146'...
    11/17/11 2:31:59.156 PM vpnd: Incoming call... Address given to client = 137.189.141.139
    11/17/11 2:31:59.156 PM com.apple.ppp.l2tp: 2011-11-17 14:31:59 CST Incoming call... Address given to client = 137.189.141.139
    11/17/11 2:31:59.178 PM pppd: pppd 2.4.2 (Apple version 560.13) started by root, uid 0
    11/17/11 2:31:59.179 PM pppd: L2TP incoming call in progress from '137.189.141.146'...
    11/17/11 2:32:00.100 PM racoon: IKE Packet: transmit success. (Phase2 Retransmit).
    11/17/11 2:32:00.157 PM vpnd: Incoming call... Address given to client = 137.189.141.140
    11/17/11 2:32:00.157 PM com.apple.ppp.l2tp: 2011-11-17 14:32:00 CST Incoming call... Address given to client = 137.189.141.140
    11/17/11 2:32:00.178 PM pppd: pppd 2.4.2 (Apple version 560.13) started by root, uid 0
    11/17/11 2:32:00.180 PM pppd: L2TP incoming call in progress from '137.189.141.146'...
    11/17/11 2:32:02.102 PM racoon: IKE Packet: transmit success. (Phase1 Retransmit).
    11/17/11 2:32:03.103 PM racoon: IKE Packet: transmit success. (Phase2 Retransmit).
    11/17/11 2:32:06.107 PM racoon: IKE Packet: transmit success. (Phase2 Retransmit).
    11/17/11 2:32:09.110 PM racoon: IKEv1 Phase2: maximum retransmits. (Phase2 maximum retransmits).
    11/17/11 2:32:12.114 PM racoon: IKE Packet: transmit success. (Phase1 Retransmit).
    11/17/11 2:32:17.191 PM vpnd: --> Client with address = 137.189.141.137 has hungup
    11/17/11 2:32:17.191 PM com.apple.ppp.l2tp: 2011-11-17 14:32:17 CST --> Client with address = 137.189.141.137 has hungup
    11/17/11 2:32:18.163 PM vpnd: Incoming call... Address given to client = 137.189.141.137
    11/17/11 2:32:18.163 PM com.apple.ppp.l2tp: 2011-11-17 14:32:18 CST Incoming call... Address given to client = 137.189.141.137
    11/17/11 2:32:18.180 PM pppd: pppd 2.4.2 (Apple version 560.13) started by root, uid 0
    11/17/11 2:32:18.184 PM pppd: L2TP incoming call in progress from '137.189.141.146'...
    11/17/11 2:32:18.186 PM vpnd: --> Client with address = 137.189.141.138 has hungup
    11/17/11 2:32:18.186 PM com.apple.ppp.l2tp: 2011-11-17 14:32:18 CST --> Client with address = 137.189.141.138 has hungup
    11/17/11 2:32:19.163 PM vpnd: Incoming call... Address given to client = 137.189.141.138
    11/17/11 2:32:19.163 PM com.apple.ppp.l2tp: 2011-11-17 14:32:19 CST Incoming call... Address given to client = 137.189.141.138
    11/17/11 2:32:19.180 PM pppd: pppd 2.4.2 (Apple version 560.13) started by root, uid 0
    11/17/11 2:32:19.184 PM pppd: L2TP incoming call in progress from '137.189.141.146'...
    11/17/11 2:32:19.186 PM vpnd: --> Client with address = 137.189.141.139 has hungup
    11/17/11 2:32:19.186 PM com.apple.ppp.l2tp: 2011-11-17 14:32:19 CST --> Client with address = 137.189.141.139 has hungup
    11/17/11 2:32:20.164 PM com.apple.ppp.l2tp: 2011-11-17 14:32:20 CST Incoming call... Address given to client = 137.189.141.139
    11/17/11 2:32:20.164 PM vpnd: Incoming call... Address given to client = 137.189.141.139
    11/17/11 2:32:20.187 PM pppd: pppd 2.4.2 (Apple version 560.13) started by root, uid 0
    11/17/11 2:32:20.188 PM vpnd: --> Client with address = 137.189.141.140 has hungup
    11/17/11 2:32:20.188 PM com.apple.ppp.l2tp: 2011-11-17 14:32:20 CST --> Client with address = 137.189.141.140 has hungup
    11/17/11 2:32:20.189 PM pppd: L2TP incoming call in progress from '137.189.141.146'...
    11/17/11 2:32:21.164 PM vpnd: Incoming call... Address given to client = 137.189.141.140
    11/17/11 2:32:21.164 PM com.apple.ppp.l2tp: 2011-11-17 14:32:21 CST Incoming call... Address given to client = 137.189.141.140
    11/17/11 2:32:21.185 PM pppd: pppd 2.4.2 (Apple version 560.13) started by root, uid 0
    11/17/11 2:32:21.187 PM pppd: L2TP incoming call in progress from '137.189.141.146'...
    11/17/11 2:32:29.130 PM racoon: IKE Packet: transmit success. (Phase1 Retransmit).
    11/17/11 2:32:38.192 PM vpnd: --> Client with address = 137.189.141.137 has hungup
    11/17/11 2:32:38.192 PM com.apple.ppp.l2tp: 2011-11-17 14:32:38 CST --> Client with address = 137.189.141.137 has hungup
    11/17/11 2:32:39.141 PM racoon: IKE Packet: transmit success. (Phase1 Retransmit).
    11/17/11 2:32:39.172 PM vpnd: Incoming call... Address given to client = 137.189.141.137
    11/17/11 2:32:39.172 PM com.apple.ppp.l2tp: 2011-11-17 14:32:39 CST Incoming call... Address given to client = 137.189.141.137
    11/17/11 2:32:39.189 PM vpnd: --> Client with address = 137.189.141.138 has hungup
    11/17/11 2:32:39.189 PM com.apple.ppp.l2tp: 2011-11-17 14:32:39 CST --> Client with address = 137.189.141.138 has hungup
    11/17/11 2:32:39.191 PM pppd: pppd 2.4.2 (Apple version 560.13) started by root, uid 0
    11/17/11 2:32:39.192 PM pppd: L2TP incoming call in progress from '137.189.141.146'...
    11/17/11 2:32:40.172 PM vpnd: Incoming call... Address given to client = 137.189.141.138
    11/17/11 2:32:40.172 PM com.apple.ppp.l2tp: 2011-11-17 14:32:40 CST Incoming call... Address given to client = 137.189.141.138
    11/17/11 2:32:40.194 PM pppd: pppd 2.4.2 (Apple version 560.13) started by root, uid 0
    11/17/11 2:32:40.197 PM pppd: L2TP incoming call in progress from '137.189.141.146'...
    11/17/11 2:32:40.198 PM vpnd: --> Client with address = 137.189.141.139 has hungup
    11/17/11 2:32:40.198 PM com.apple.ppp.l2tp: 2011-11-17 14:32:40 CST --> Client with address = 137.189.141.139 has hungup
    11/17/11 2:32:41.173 PM vpnd: Incoming call... Address given to client = 137.189.141.139
    11/17/11 2:32:41.173 PM com.apple.ppp.l2tp: 2011-11-17 14:32:41 CST Incoming call... Address given to client = 137.189.141.139
    11/17/11 2:32:41.191 PM vpnd: --> Client with address = 137.189.141.140 has hungup

    I have no new information to report to help you with this, but I am also seeing the same issue. The same behavior happens when connecting through my router *or* via ATT iPhone tethering. 

  • How to install and setup macports for mac os mavericks, for open vpn purpose.

    Hi Guys! I'm using OS Mavericks now in my macbook pro, I need help and suggestions regarding open vpn application that i can use for my laptop so that i can access my server in my office even im out of town and country. I found vpn network setup in network preference but i dont know how to setup. also others are suggesting macports for mac but still difficult to analyze and setup. I need to troubleshoot in terminal which i'm not familiar with commands. Please help me guys! Please!

    You're going to need to figure out the required settings for the VPN server you're working with, whether you use the standard client or some add-on.  That information is a prerequisite for a VPN client; for any VPN client. 
    If the standard VPN client present in OS X doesn't and cannot be gotten to work, then something like IPSecuritas or the OpenVPN client would be a typical fallback choice, but IPSecuritas is far more flexible — which means far more complex.  These clients are available as application downloads; no Brew or MacPorts required.
    Is this your server you're connecting into?  Or is somebody else controlling it? 
    If it's your server and thus your VPN server, then you'll have the option to get either the VPN server in the gateway firewall box or the VPN server running in the target system configured to allow the OS X VPN client to work.
    If the server is controlled by somebody else, ask them for the settings necessary for the VPN client.
    As Barney-15E states, using Brew or MacPorts won't help, unless you're installing the VPN client that way — which would be a little unusual — and you're still going to have to figure out the L2TP / IPSec or PPTP or other settings here, irrespective of how the VPN client gets installed.

  • Can I install windows home server 2011 on a mac mini?

    Hey guys and girls...
    Can I install windows home server 2011 on a mac mini? If so how?

    WHS is 64-bit. Genius are really not versed in Boot Camp or Windows, let alone anything not on the "approved" list of Windows versions.
    Most of the problems are with burning ISO, or the SuperDrive. It should have seen the NTFS partition. Disk Utility is known to be trouble, burning it on your Mac Mine but iwth Windows 7....?
    Seeing you have Windows 7, format the partition to NTFS 160GB you want and then exit and boot WHS installer.
    Or run the install from Windows 7.
    In past, WHS supported TimeMachine, streaming video, supported iTunes (that was broken/disabled it seems by Apple with 10.0), as well as even SuperDuper backups.
    Main idea is to have some network attached drives.
    Netgear ReadyNAS Ultra2 Review
    Newegg - HP StorageWorks X310 Windows Home Server
    I have both a ISO and Burned it to a dvd useing windows 7 built in ISO burning software, Its a 64 bit copy (got from microsoft download website from my dads microsoft account).
    It is enouth for the OS but it runs slowish on the mac mini (latest core 2 duo 2.4ghz model) The Idea was to have it backup my pc and laptop to a usb drive and act as a media centre pc (connected to av receaver and tv and on a gigabit network with a 2TB nas)
    Since it looks like this may not work, whats the best way to make it into a media centure? mac osx? windows 7? plex? whats best and good?
    I'd avoid USB like the plague. Why not use your PC instead? If I was going to use a Mini for WHS, I'd just use the Mini solely for Windows and not have OS X (you can boot OS X off an external drive anyway).

  • How do i reload OS X Server on Mac Mini, App store says installed but no reset or reload, system tells me to reinstall

    how do i reload OS X Server on Mac Mini, App store says installed but no reset or reload, system tells me to reinstall?

    Reboot holding down the Command and R keys.  This will get you in to the Recovery partition.  From there you can reinstall the entire OS.  Please note, Server.app will not be included in the reinstall.  You will need to log into your App store account to download it.

  • How to install OS X Server on Intel MAC

    Hello,
    I have early copy of Tiger OS X Server and I would like to install it on my Intel Mac. Can anyone help?
    Thanks,
    Vladik

    Some have said that Apple has maintained that 10.4(.7) Server UB is a separate product with no upgrade/replacement policy.
    However, I fully expect that Apple handles this on a by-case basis. If you've purchased Enterprise support and/or the Server maintenance package, then it's probably a different matter.
    The most important thing is, as a customer, take this up with Apple.
    Nothing said here will have much bearing on that - necessary - conversation.

  • If I install the Mail server on a Mac Mini as a server, can my users utilize Outlook as their mail client and how will it be different for them?

    If I install the Mail server on a Mac Mini as a server, can my users utilize Outlook as their mail client and how will it be different for them?

    Your users can utilize Outlook no matter where your email is hosted at.
    how will it be different for them
    different from what?

  • I recently installed OS X Server on my mac mini and found that it took up almost 170GB of space on the hard drive, is that possible ?

    I recently installed OS X Server on my mac mini and found that it took up almost 170 GB of space on the hard drive , is that possible ?

    In the Server cache what is an OK setting ..... I mean how many GB 25, 45, 60, ?  Any suggestions ?

  • I want to install Snow Leopard Server on our MacPro (2.66) using Mac Mini Snow Leopard Server disks?  I kept getting an error for backwards compatibility.   Is this possible or do I need to purchase another copy of Snow Leopard Server?

    I want to install Snow Leopard Server on our MacPro(2.66) using Mac Mini Snow Leopard Server disks?  I kept getting an error for backwards compatibility.   Is this possible or do I need topurchase another copy of Snow Leopard Server?

    The OS disks that are shipped with a particular product
    are set up so that tey will only install on that product.
    It will install on any Mini of that exact vintage, but that
    is all.
    This is to prevent people from doing exactly what you
    are trying to do.  The license for OSX shipped with any
    is only valid for that product.  Also, Snow Leopard,
    including Server, is only permitted to be run on one
    computer at a time.  Bottom line, unlike Lion, legally
    you cannot install the same copy on multiple
    computers unless some "family pack" or site license
    is purchased.
    Yes, you need to purchase another copy.
    The copy of Snow Leopard license is here:
    http://images.apple.com/legal/sla/docs/macosx_snowleopard.pdf

  • Is there any option to install SQL server in mac os 10.9

    is there any option to install SQL server in mac os 10.9

    Hi PREM,
    If I understand correctly, you want to use SQL Server Authentication log to SQL Server Integration Services.
    Based on my research, only Microsoft Windows Authentication is available for SSIS. So we cannot use SQL Server Authentication log to SQL Server Integration Services. Besides, we can only add OS users in the DCOM Config permission area.
    Reference:
    Connect to Server (Integration Services)
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

Maybe you are looking for