GCB Tutorial - PowerPoint PPT Presentation

About This Presentation
Title:

GCB Tutorial

Description:

GCB is the Generic Connection Broker. Included in Condor 6.7.13 (Nov 2005) and later ... Define the path to the broker binary # for the master to spawn ... – PowerPoint PPT presentation

Number of Views:326
Avg rating:3.0/5.0
Slides: 24
Provided by: alai155
Category:
Tags: gcb | broker | tutorial

less

Transcript and Presenter's Notes

Title: GCB Tutorial


1
GCB Tutorial
2
What is GCB?
  • GCB is the Generic Connection Broker
  • Included in Condor 6.7.13 (Nov 2005) and later
  • Linux-only
  • It solves the firewall traversal problem
  • So what is the firewall traversal problem?

3
A Simple Condor Pool
Note This is a subset of communication in Condor
4
What If There Is A Firewall?
  • Firewalls usually block incoming traffic on most
    ports
  • Incoming depends on your perspective
  • Organizations have firewalls to protect from
    computers outside the organization
  • Individual computers have firewalls to protect
    from other computers

5
A Condor Pool With Firewall
6
How Can You Traverse Firewalls?
  • Punch a hole
  • Configure firewall to allow traffic on certain
    ports to come through
  • Condor can use many ports
  • Punching holes is a security risk and makes
    people nervous

7
How Can You Traverse Firewalls?
  • Use Condor-C
  • Put host on network edge
  • Open a couple of ports for it
  • Delegate jobs to this host

Matchmaker
Executor
Re-Submitter
Submitter
8
How Can You Traverse Firewalls?
  • Change Condor to always use outgoing traffic
  • What if there are two firewalls or private
    networks?
  • Which direction is outgoing?
  • GCB automates this solution
  • It knows which direction is outgoing
  • It can proxy if there are two firewalls

9
GCB Contacting Executor(One Possible Scenario)
  • 1. Executor registers with GCB (Permanent TCP
    connection)

2. Executor advertises to matchmaker (GCB IP
address)
GCB
Matchmaker
3. After match, submitter contacts executor, via
GCB
Executor
4. GCB tell executor to open connection
5. Executor opens connection to submitter
Submitter
10
GCB(Acting as Proxy)
  • 1. Assume 1 port open for matchmaker. (Can avoid)

2. Executor advertises with GCB (permanent
connection)
GCB
3. Executor advertises to matchmaker (GCB IP
address)
4. After match, submitter contacts executor, via
GCB
5. Communication flows through GCB, using both
connections
Note Can avoid firewall hole by setting up
second GCB
11
GCB Advantages
  • Good connectivity
  • Works with multiple private networks
  • Works with network address translation
  • Dont need to punch holes in firewall
  • GCB does not need to be run as root
  • No changes to firewall configuration

12
GCB Disadvantages
  • GCB is a point of failure
  • All communications through GCB, so if GCB fails
  • Computers behind a firewall share an IP address
    (of GCB)
  • Makes host-based security difficult
  • Doesnt work with Kerberos security
  • Can slow down network performance
  • Scalability issues
  • A single GCB server is limited by number of ports
    available on computer
  • Complex to configure and debug

13
Now for the Nitty Gritty
14
Setting Up GCB
  1. Install GCB
  2. Configure GCB
  3. Configure Condor to use GCB

15
Install GCB
  • GCB comes with Condor
  • GCB has two programs
  • gcb_broker The big brains of GCB
  • gcb_relay_server proxy for private net to
    private net communication
  • GCB was written independently of Condor
  • Cant read condor_config directly
  • So create environment in condor_config
  • GCB reads from environment

16
Install GCB
  • GCB should be on computer with no other services
  • GCB can use lots of ports, so avoid port
    competition with other programs
  • Using GCB can slow down communication, so keeping
    GCB on its own computer helps speed
  • GCB needs to be on edge of network
  • On public network and private network
  • At least one GCB per private network

17
Configure GCB
  • To run from condor_master
  • Specify that you only want the master
  • and the broker running
  • DAEMON_LIST MASTER, GCB_BROKER
  • Define the path to the broker binary
  • for the master to spawn
  • GCB_BROKER(RELEASE_DIR)/libexec/gcb_broker

18
Configure GCB
  • GCB expects configuration in environment. Sample
  • GCB_BROKER_ENVIRONMENT
  • Provide the full path to the gcb_relay_server
  • GCB_BROKER_ENVIRONMENT GCB_RELAY_SERVER(GCB_RE
    LAY)
  • Tell GCB to write all log files into the Condor
    log
  • directory
  • GCB_BROKER_ENVIRONMENT(GCB_BROKER_ENVIRONMENT)GC
    B_LOG_DIR(LOG)
  • Tell GCB it can connect to private network
  • GCB_BROKER_ENVIRONMENT(GCB_BROKER_ENVIRONMENT)G
    CB_ACTIVE_TO_CLIENTyes
  • Set public IP address for GCB broker
  • GCB_BROKER_ARGS -i 123.123.123.123

Provide the full path to the gcb_relay_server
GCB_BROKER_ENV GCB_RELAY_SERVER(GCB_RELAY)
Tell GCB to write all log files into the
Condor log directory GCB_BROKER_ENV(GCB_BROKER_
ENV)GCB_LOG_DIR(LOG)
Note more configuration options are available.
See manual for details
Tell GCB it can connect to private
network GCB_BROKER_ENV (GCB_BROKER_ENV)GCB_ACT
IVE_TO_CLIENTyes
Set public IP address for GCB
broker GCB_BROKER_ARGS -i 123.123.123.123
19
Configure Condor to Use GCB
  • In condor_config
  • Turn on GCB
  • NET_REMAP_ENABLE true
  • NET_REMAP_SERVICE GCB
  • Point to GCB
  • NET_REMAP_INAGENT 123.123.123.123
  • Routing Table
  • NET_REMAP_ROUTE /full/path/gcbroutes

20
Set Up Routing Table
Private Network 192.168.2.
Public Network 123.123.123.
GCB Broker 123.123.123.123
Routing Table 123.123.123.123/32 GCB /0
direct
21
Set Up Routing Table
Private Network 192.168.2.
Public Network 123.123.123.
GCB Broker 123.123.123.65
GCB Broker 123.123.123.66
Private Network 192.168.2.
Routing Table 123.123.123.65/32 GCB
123.123.123.66/32 GCB /0 direct
22
Security Implications
  • Hosts in private network look like they share a
    single IP Address (the address of the GCB broker)
  • If you use host-based security, you cant
    distinguish hosts in the private network

23
More Information
  • Section 3.8 of the Condor manual Networking
  • http//www.cs.wisc.edu/sschang/firewall/gcb
Write a Comment
User Comments (0)
About PowerShow.com