SlideShare une entreprise Scribd logo
1  sur  13
Télécharger pour lire hors ligne
Deploying trusted
developer sandboxes in
Amazon’s cloud

Jason Brazile, Remi Locherer, and
Ronnie Brunner
This talk… potential cases for…
• cloud storage & remote dev/test
• automated read-only system images
• not-too-inconvenient encryption everywhere
Not a takeaway…
• Pre-Snowden, but complies w/ 4 of 5 Schneier’s tips
http://www.theguardian.com/world/2013/sep/05/nsa-how-to-remain-secure-surveillance

|
Background:
ESA Study: 2009-2011
potential use-cases:
• …
• Cloud for free* data
access
• Cloud for remote
development
• …
(*)https://www.google.com/?q=ESA+Earth+Observation+Data+Policy

|

ESRIN/Contract Nr. 227700/09/I-SB final report (245 pages)
The CIOP case
• Big, free-ish, Data
• Distinct, proprietary,
software devs
• Slow test data
distribution to code
developers
• Devs nervous about
code leaking

Proprietary Algorithm A dev’d by X

Instead, lead the
users to the data
(in the cloud)

|

Proprietary Algorithm B dev’d by Y
But… Security…
• ESA less concerned about
hacking science data than
their end–users’ algorithms
and brand damage
• Data = not really sensitive
• Code = sensitive
• Soln can’t be too inconvenient
|
The Cloud Sandbox Prototype
NFS

user a

/home/a

X.509 derived
ssh key

/home/b

ldap

portal

catalog

/home/c
ESA/CIOP DMZ

/data

sandbox a
user b

Existing X.509 certs

nfs mount of encfs
encrypted /home/a

encfs sshd

ESA private net

sandbox b
encfs sshd

sandbox c
encfs sshd
user c

|

sandbox images
basically read-only
ldap config limits
user c to sandbox c

Admin
First Time Usage

ssh identity
automatically
derived from
user’s existing
X.509 certificate

|

Single encfs
passphrase can
decrypt both
1. user’s /home and
2. shared /validate
Daily Usage

ssh identity
automatically
derived from
user’s existing
X.509 certificate

ldap directory
centralized access
control to machines
and nfs mounts

|

Single encfs
passphrase can
decrypt both
1. user’s /home and
2. shared /validate
Encrypted
File system
choices SL6

|
Details: just the OS...
name: fedora-xfce
summary: Fedora with xfce
os:
The only change needed:
name: fedora
name: sl
version: 16
version: 6
hardware:
partitions:
"/":
size: 5
packages:
- @base
- @base-x
- @fonts
- @xfce-desktop
- @critical-path-xfce
access_key:
yourawsaccesskey
secret_access_key: youawssecretkey
account_number:
youramazonaccountnumber
cert_file:
/root/.ec2/yourcertificate.pem
key_file:
/root/.ec2/yourprivatekey.pem

Note: boxgrinder is
“sleeping”. Now we
use appliance-creator

|
Details: server customization (~500 lines)
# ldap configuration
yum install -y openldap-clients openldap-servers nss-pam-ldapd
# prepare ldap cert
cd /etc/openldap/cacerts
openssl genrsa -out cert.key 2048
…
openssl req -new -key cert.key -out cert.csr -subj 
"/C=IT/L=Default City/O=Default Company Ltd/CN=192.168.11.10"
…
/usr/sbin/cacertdir_rehash /export/certs/
cat <<EOF> /etc/openldap/slapd.d/cn=config.ldif
…
cat <<EOF> /etc/openldap/slapd.d/cn=config/olcDatabase={2}bdb.ldif
…
cat <<EOF> /etc/openldap/slapd.d/cn=config/cn=schema/cn={12}autofs.ldif
…
cat <<EOF> /etc/openldap/slapd.d/cn=config/cn=schema/cn={14}ldappubkey.ldif
…
cat <<EOF> /etc/openldap/g-pod.ldif
…
slapadd -l /etc/openldap/g-pod.ldif

•
•
•
•
•

Firewall
Nfs/autofs
Certificates
Ldap
Syslog

|

# local firewall rules for inbound traffic
lokkit --nostart --enabled 
--service=ssh 
--port=111:tcp 
--port=111:udp 
TODO:
--port=514:tcp 
rsyslog à TLS
--port=636:tcp 
--port=662:tcp 
--port=662:udp 
--port=2049:tcp 
--port=2049:udp 
--port=32803:tcp 
--port=32769:udp
# 111 rpc (for nfs)
# ldap-ssl (port 636)
# 514 rsyslog
# 662 statd (for nfs)
# 2049 nfs4
# 32803,32769 lockd (for nfs)

rsyslog
Details: sandbox customization (~250 lines)
# encrypt temporary filesystems
yum install -y cryptsetup-luks
# swap space
# (use "cryptsetup status /dev/mapper/swap" after reboot)
echo 'swap /dev/mapper/VolGroup-lv_swap /dev/urandom 
cipher=aes-cbc-essiv:sha256,size=128,swap' > /etc/crypttab
sed -i 's/.*swap.*//dev/mapper/swap swap swap defaults 0 0/' /etc/fstab
# temporary file systems
echo 'none /tmp tmpfs defaults,size=64m 0 0' >> /etc/fstab
echo 'none /var/tmp tmpfs defaults,size=128m 0 0' >> /etc/fstab

…
chmod +x /etc/profile.d/encfs.sh

# load fuse kernel module at boot
cat <<EOF> /etc/sysconfig/modules/encfs.modules
#!/bin/bash
exec /sbin/modprobe fuse >/dev/null 2>&1
EOF
chmod +x /etc/sysconfig/modules/encfs.modules

[…]
yum install -y openssh-ldap
echo 'AuthorizedKeysCommand 
# home directory encryption
# fuse-2.8.3-1.el6 works, fuse-2.8.3-3.el6_1 "fusermount -u" does not work. /usr/libexec/openssh/ssh-ldap-wrapper' >> /etc/ssh/sshd_config
yum install -y 
fuse-2.8.3-1.el6 
# for ssh-ldap-helper
fuse-encfs-1.7.4-1.el6.i686 
ln -s /etc/openldap/ldap.conf /etc/ssh/ldap.conf
pwgen

•
•
•
•
•

Firewall
Nfs/autofs/fuse-encfs
Crytpsetup-luks
Openssh-ldap
Syslog

|
Takeaways… potential cases made for…
• cloud storage (test data) & remote dev access
• automated read-only system images (server & client)
• not-too-inconvenient encryption everywhere
github.com/netceteragroup/esa-ciop-sandbox-image-proto

Contenu connexe

Plus de jazoon13

JAZOON'13 - Sven Peters - How to do Kick-Ass Software Development
JAZOON'13 - Sven Peters - How to do Kick-Ass Software DevelopmentJAZOON'13 - Sven Peters - How to do Kick-Ass Software Development
JAZOON'13 - Sven Peters - How to do Kick-Ass Software Development
jazoon13
 
JAZOON'13 - Nikita Salnikov-Tarnovski - Multiplatform Java application develo...
JAZOON'13 - Nikita Salnikov-Tarnovski - Multiplatform Java application develo...JAZOON'13 - Nikita Salnikov-Tarnovski - Multiplatform Java application develo...
JAZOON'13 - Nikita Salnikov-Tarnovski - Multiplatform Java application develo...
jazoon13
 
JAZOON'13 - Pawel Wrzeszcz - Visibility Shift In Distributed Teams
JAZOON'13 - Pawel Wrzeszcz - Visibility Shift In Distributed TeamsJAZOON'13 - Pawel Wrzeszcz - Visibility Shift In Distributed Teams
JAZOON'13 - Pawel Wrzeszcz - Visibility Shift In Distributed Teams
jazoon13
 
JAZOON'13 - Kai Waehner - Hadoop Integration
JAZOON'13 - Kai Waehner - Hadoop IntegrationJAZOON'13 - Kai Waehner - Hadoop Integration
JAZOON'13 - Kai Waehner - Hadoop Integration
jazoon13
 
JAZOON'13 - Sam Brannen - Spring Framework 4.0 - The Next Generation
JAZOON'13 - Sam Brannen - Spring Framework 4.0 - The Next GenerationJAZOON'13 - Sam Brannen - Spring Framework 4.0 - The Next Generation
JAZOON'13 - Sam Brannen - Spring Framework 4.0 - The Next Generation
jazoon13
 
JAZOON'13 - Anatole Tresch - Go for the money (JSR 354) !
JAZOON'13 - Anatole Tresch - Go for the money (JSR 354) !JAZOON'13 - Anatole Tresch - Go for the money (JSR 354) !
JAZOON'13 - Anatole Tresch - Go for the money (JSR 354) !
jazoon13
 
JAZOON'13 - Abdelmonaim Remani - The Economies of Scaling Software
JAZOON'13 - Abdelmonaim Remani - The Economies of Scaling SoftwareJAZOON'13 - Abdelmonaim Remani - The Economies of Scaling Software
JAZOON'13 - Abdelmonaim Remani - The Economies of Scaling Software
jazoon13
 
JAZOON'13 - Stefan Saasen - Real World Git Workflows
JAZOON'13 - Stefan Saasen - Real World Git WorkflowsJAZOON'13 - Stefan Saasen - Real World Git Workflows
JAZOON'13 - Stefan Saasen - Real World Git Workflows
jazoon13
 

Plus de jazoon13 (12)

JAZOON'13 - Sven Peters - How to do Kick-Ass Software Development
JAZOON'13 - Sven Peters - How to do Kick-Ass Software DevelopmentJAZOON'13 - Sven Peters - How to do Kick-Ass Software Development
JAZOON'13 - Sven Peters - How to do Kick-Ass Software Development
 
JAZOON'13 - Nikita Salnikov-Tarnovski - Multiplatform Java application develo...
JAZOON'13 - Nikita Salnikov-Tarnovski - Multiplatform Java application develo...JAZOON'13 - Nikita Salnikov-Tarnovski - Multiplatform Java application develo...
JAZOON'13 - Nikita Salnikov-Tarnovski - Multiplatform Java application develo...
 
JAZOON'13 - Pawel Wrzeszcz - Visibility Shift In Distributed Teams
JAZOON'13 - Pawel Wrzeszcz - Visibility Shift In Distributed TeamsJAZOON'13 - Pawel Wrzeszcz - Visibility Shift In Distributed Teams
JAZOON'13 - Pawel Wrzeszcz - Visibility Shift In Distributed Teams
 
JAZOON'13 - Kai Waehner - Hadoop Integration
JAZOON'13 - Kai Waehner - Hadoop IntegrationJAZOON'13 - Kai Waehner - Hadoop Integration
JAZOON'13 - Kai Waehner - Hadoop Integration
 
JAZOON'13 - Sam Brannen - Spring Framework 4.0 - The Next Generation
JAZOON'13 - Sam Brannen - Spring Framework 4.0 - The Next GenerationJAZOON'13 - Sam Brannen - Spring Framework 4.0 - The Next Generation
JAZOON'13 - Sam Brannen - Spring Framework 4.0 - The Next Generation
 
JAZOON'13 - Guide Schmutz - Kafka and Strom Event Processing In Realtime
JAZOON'13 - Guide Schmutz - Kafka and Strom Event Processing In RealtimeJAZOON'13 - Guide Schmutz - Kafka and Strom Event Processing In Realtime
JAZOON'13 - Guide Schmutz - Kafka and Strom Event Processing In Realtime
 
JAZOON'13 - Andrej Vckovski - Go synchronized
JAZOON'13 - Andrej Vckovski - Go synchronizedJAZOON'13 - Andrej Vckovski - Go synchronized
JAZOON'13 - Andrej Vckovski - Go synchronized
 
JAZOON'13 - Paul Brauner - A backend developer meets the web: my Dart experience
JAZOON'13 - Paul Brauner - A backend developer meets the web: my Dart experienceJAZOON'13 - Paul Brauner - A backend developer meets the web: my Dart experience
JAZOON'13 - Paul Brauner - A backend developer meets the web: my Dart experience
 
JAZOON'13 - Anatole Tresch - Go for the money (JSR 354) !
JAZOON'13 - Anatole Tresch - Go for the money (JSR 354) !JAZOON'13 - Anatole Tresch - Go for the money (JSR 354) !
JAZOON'13 - Anatole Tresch - Go for the money (JSR 354) !
 
JAZOON'13 - Abdelmonaim Remani - The Economies of Scaling Software
JAZOON'13 - Abdelmonaim Remani - The Economies of Scaling SoftwareJAZOON'13 - Abdelmonaim Remani - The Economies of Scaling Software
JAZOON'13 - Abdelmonaim Remani - The Economies of Scaling Software
 
JAZOON'13 - Stefan Saasen - True Git: The Great Migration
JAZOON'13 - Stefan Saasen - True Git: The Great MigrationJAZOON'13 - Stefan Saasen - True Git: The Great Migration
JAZOON'13 - Stefan Saasen - True Git: The Great Migration
 
JAZOON'13 - Stefan Saasen - Real World Git Workflows
JAZOON'13 - Stefan Saasen - Real World Git WorkflowsJAZOON'13 - Stefan Saasen - Real World Git Workflows
JAZOON'13 - Stefan Saasen - Real World Git Workflows
 

Dernier

+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
?#DUbAI#??##{{(☎️+971_581248768%)**%*]'#abortion pills for sale in dubai@
 
Architecting Cloud Native Applications
Architecting Cloud Native ApplicationsArchitecting Cloud Native Applications
Architecting Cloud Native Applications
WSO2
 
Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire business
panagenda
 

Dernier (20)

AXA XL - Insurer Innovation Award Americas 2024
AXA XL - Insurer Innovation Award Americas 2024AXA XL - Insurer Innovation Award Americas 2024
AXA XL - Insurer Innovation Award Americas 2024
 
Cyberprint. Dark Pink Apt Group [EN].pdf
Cyberprint. Dark Pink Apt Group [EN].pdfCyberprint. Dark Pink Apt Group [EN].pdf
Cyberprint. Dark Pink Apt Group [EN].pdf
 
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingRepurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
 
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
 
MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
 
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
 
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWEREMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
 
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, AdobeApidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
 
MS Copilot expands with MS Graph connectors
MS Copilot expands with MS Graph connectorsMS Copilot expands with MS Graph connectors
MS Copilot expands with MS Graph connectors
 
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
 
Architecting Cloud Native Applications
Architecting Cloud Native ApplicationsArchitecting Cloud Native Applications
Architecting Cloud Native Applications
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processors
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
 
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodPolkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdf
 
DBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor PresentationDBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor Presentation
 
Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire business
 
Exploring Multimodal Embeddings with Milvus
Exploring Multimodal Embeddings with MilvusExploring Multimodal Embeddings with Milvus
Exploring Multimodal Embeddings with Milvus
 

JAZOON'13 - Jason Brazile - Deploying trusted developer sandboxes in Amazon's cloud

  • 1. Deploying trusted developer sandboxes in Amazon’s cloud Jason Brazile, Remi Locherer, and Ronnie Brunner
  • 2. This talk… potential cases for… • cloud storage & remote dev/test • automated read-only system images • not-too-inconvenient encryption everywhere Not a takeaway… • Pre-Snowden, but complies w/ 4 of 5 Schneier’s tips http://www.theguardian.com/world/2013/sep/05/nsa-how-to-remain-secure-surveillance |
  • 3. Background: ESA Study: 2009-2011 potential use-cases: • … • Cloud for free* data access • Cloud for remote development • … (*)https://www.google.com/?q=ESA+Earth+Observation+Data+Policy | ESRIN/Contract Nr. 227700/09/I-SB final report (245 pages)
  • 4. The CIOP case • Big, free-ish, Data • Distinct, proprietary, software devs • Slow test data distribution to code developers • Devs nervous about code leaking Proprietary Algorithm A dev’d by X Instead, lead the users to the data (in the cloud) | Proprietary Algorithm B dev’d by Y
  • 5. But… Security… • ESA less concerned about hacking science data than their end–users’ algorithms and brand damage • Data = not really sensitive • Code = sensitive • Soln can’t be too inconvenient |
  • 6. The Cloud Sandbox Prototype NFS user a /home/a X.509 derived ssh key /home/b ldap portal catalog /home/c ESA/CIOP DMZ /data sandbox a user b Existing X.509 certs nfs mount of encfs encrypted /home/a encfs sshd ESA private net sandbox b encfs sshd sandbox c encfs sshd user c | sandbox images basically read-only ldap config limits user c to sandbox c Admin
  • 7. First Time Usage ssh identity automatically derived from user’s existing X.509 certificate | Single encfs passphrase can decrypt both 1. user’s /home and 2. shared /validate
  • 8. Daily Usage ssh identity automatically derived from user’s existing X.509 certificate ldap directory centralized access control to machines and nfs mounts | Single encfs passphrase can decrypt both 1. user’s /home and 2. shared /validate
  • 10. Details: just the OS... name: fedora-xfce summary: Fedora with xfce os: The only change needed: name: fedora name: sl version: 16 version: 6 hardware: partitions: "/": size: 5 packages: - @base - @base-x - @fonts - @xfce-desktop - @critical-path-xfce access_key: yourawsaccesskey secret_access_key: youawssecretkey account_number: youramazonaccountnumber cert_file: /root/.ec2/yourcertificate.pem key_file: /root/.ec2/yourprivatekey.pem Note: boxgrinder is “sleeping”. Now we use appliance-creator |
  • 11. Details: server customization (~500 lines) # ldap configuration yum install -y openldap-clients openldap-servers nss-pam-ldapd # prepare ldap cert cd /etc/openldap/cacerts openssl genrsa -out cert.key 2048 … openssl req -new -key cert.key -out cert.csr -subj "/C=IT/L=Default City/O=Default Company Ltd/CN=192.168.11.10" … /usr/sbin/cacertdir_rehash /export/certs/ cat <<EOF> /etc/openldap/slapd.d/cn=config.ldif … cat <<EOF> /etc/openldap/slapd.d/cn=config/olcDatabase={2}bdb.ldif … cat <<EOF> /etc/openldap/slapd.d/cn=config/cn=schema/cn={12}autofs.ldif … cat <<EOF> /etc/openldap/slapd.d/cn=config/cn=schema/cn={14}ldappubkey.ldif … cat <<EOF> /etc/openldap/g-pod.ldif … slapadd -l /etc/openldap/g-pod.ldif • • • • • Firewall Nfs/autofs Certificates Ldap Syslog | # local firewall rules for inbound traffic lokkit --nostart --enabled --service=ssh --port=111:tcp --port=111:udp TODO: --port=514:tcp rsyslog à TLS --port=636:tcp --port=662:tcp --port=662:udp --port=2049:tcp --port=2049:udp --port=32803:tcp --port=32769:udp # 111 rpc (for nfs) # ldap-ssl (port 636) # 514 rsyslog # 662 statd (for nfs) # 2049 nfs4 # 32803,32769 lockd (for nfs) rsyslog
  • 12. Details: sandbox customization (~250 lines) # encrypt temporary filesystems yum install -y cryptsetup-luks # swap space # (use "cryptsetup status /dev/mapper/swap" after reboot) echo 'swap /dev/mapper/VolGroup-lv_swap /dev/urandom cipher=aes-cbc-essiv:sha256,size=128,swap' > /etc/crypttab sed -i 's/.*swap.*//dev/mapper/swap swap swap defaults 0 0/' /etc/fstab # temporary file systems echo 'none /tmp tmpfs defaults,size=64m 0 0' >> /etc/fstab echo 'none /var/tmp tmpfs defaults,size=128m 0 0' >> /etc/fstab … chmod +x /etc/profile.d/encfs.sh # load fuse kernel module at boot cat <<EOF> /etc/sysconfig/modules/encfs.modules #!/bin/bash exec /sbin/modprobe fuse >/dev/null 2>&1 EOF chmod +x /etc/sysconfig/modules/encfs.modules […] yum install -y openssh-ldap echo 'AuthorizedKeysCommand # home directory encryption # fuse-2.8.3-1.el6 works, fuse-2.8.3-3.el6_1 "fusermount -u" does not work. /usr/libexec/openssh/ssh-ldap-wrapper' >> /etc/ssh/sshd_config yum install -y fuse-2.8.3-1.el6 # for ssh-ldap-helper fuse-encfs-1.7.4-1.el6.i686 ln -s /etc/openldap/ldap.conf /etc/ssh/ldap.conf pwgen • • • • • Firewall Nfs/autofs/fuse-encfs Crytpsetup-luks Openssh-ldap Syslog |
  • 13. Takeaways… potential cases made for… • cloud storage (test data) & remote dev access • automated read-only system images (server & client) • not-too-inconvenient encryption everywhere github.com/netceteragroup/esa-ciop-sandbox-image-proto