SlideShare a Scribd company logo
PeeringDB
Arnold Nipper
arnold@peeringdb.com
2017-02-28 Apricot 2017, Ho Chi Minh City, Viet Nam 1
Agenda
• PeeringDB 2.0
• Membership and Governance
• Committees
• Sponsorship
• Information and Resources
2017-02-28 Apricot 2017, Ho Chi Minh City, Viet Nam 2
What is PeeringDB?
• PeeringDB is the database of peering information on the Internet
• Contains peering location and contact information for
• Networks
• Exchanges
• Facilities
• A PeeringDB record makes it easy for people to find you, and helps you to
establish peering
• If you aren’t registered in PeeringDB, you can register at
https://www.peeringdb.com/register
• We use basic verification for new accounts and require current whois
information
• Please update your whois information
• Please register from a company email address
2017-02-28 Apricot 2017, Ho Chi Minh City, Viet Nam 3
PeeringDB 2.0 is Here!
• PeeringDB 2.0 launched 15 March, 2016
• Backend database (1.0) discontinued simultaneously
• Last legacy SQL dump for public consumption:
https://peeringdb.com/v1/dbexport/peeringdb.sql
• Investigating 404s for old SQL to contact users
• Questions to support@peeringdb.com
• Challenges during the launch
• Very minor bug fixes required, but overall a success!
• Lots of support tickets
• 20C (developer contractor) very responsive to community - thanks!
• Current release: 2.0.14
2017-02-28 Apricot 2017, Ho Chi Minh City, Viet Nam 4
2017-02-28 Apricot 2017, Ho Chi Minh City, Viet Nam 5
Key New Infrastructure Features
• Complete rewrite in Python
• Python: fast and clean, widely used and supported
• HTML5: adaptive design for desktop and mobile
• Support for a multideveloper environment
• Redesigned schema with data validation
• All data is permissioned and editable
• Input validation on fields: IP addresses, email addresses, etc.
• Validation in PeeringDB record: dropdown box to select ASN at exchange
• Data versioning
• Revision history for every data change
• Easy to restore and roll back
• Historical data import from CAIDA going back to 2010 (not available yet)
• RESTful API
• Stateless
• Incremental database syncs
• With documentation and tools, oh my!
2017-02-28 Apricot 2017, Ho Chi Minh City, Viet Nam 6
Key New User Features
• Facilities and exchanges can now update their own info
• Networks are still required to associate their record at a facility or exchange
• Multiple records of any type can be associated with an organization
• Simpler organization management with a single account for network, facility, exchange records
• One account can manage multiple organizations
• Manage all of the things with a single account
• Users can manage their accounts
• Admin account for an organization can delegate fine-grained permissions
• Contact info has permissions
• Private/users/public permissions
• All users must register, no more guest account
• Public view can see all info except contact info (no login needed)
• APIs and local database sync
• Sync PeeringDB to a local database in any engine format
2017-02-28 Apricot 2017, Ho Chi Minh City, Viet Nam 7
RESTful API Designed for Automation
• All operations are supported and are designed to be automated
• Read
• Create
• Update
• Delete
• Each object type has an associated tag
• org
• net
• ix
• fac
• List of objects: https://peeringdb.com/apidocs/
• API documentation: http://docs.peeringdb.com/api_specs/
2017-02-28 Apricot 2017, Ho Chi Minh City, Viet Nam 8
Quick Examples Return Output in JSON
• List all networks: curl -X GET
https://<username>:<password>@www.peeringdb.com/api/net
• Show a specific network: curl -X GET
https://<username>:<password>@www.peeringdb.com/api/net/20
2017-02-28 Apricot 2017, Ho Chi Minh City, Viet Nam 9
{"meta": {}, "data": [{"id": 20, "org_id": 10356, "org": {"id":
10356, "name": "20C", "website": "http://20c.com", "notes": "",
"net_set": [20], "fac_set": [], "ix_set": [], "address1": "",
"address2": "", "city": "Chicago", "country": "US", "state":
"IL", "zipcode": "", "created": "2014-11-17T14:59:34Z",
"updated": "2016-03-23T20:39:18Z", "status": "ok"}, "name":
"20C", "aka": "", "website": "http://20c.com", "asn": 63311, "
... }
Local Database Sync
• Database sync gives you a local copy of PeeringDB for customization
or internal use
• Sync as often as you like
• Incremental sync is supported
• Improves performance and reduces load on PeeringDB servers
• Build custom indexes and interfaces
• Add custom fields
• Choice of database engines
• Currently supported: MySQL, Postgres, SQLite
• Sync using the provided tools or build your own using the API
2017-02-28 Apricot 2017, Ho Chi Minh City, Viet Nam 10
Django Library
• django-peeringdb is a Django library with a local PeeringDB database
sync
• Defines the database schema to create a local database copy
• Easy to integrate in a common framework for locals tools and custom
interfaces
• Supports multiple database engines (MySQL, Postgres, SQLite)
• Available at http://peeringdb.github.io/django-peeringdb/
2017-02-28 Apricot 2017, Ho Chi Minh City, Viet Nam 11
Python Client
• peeringdb-py is a Python client for PeeringDB
• Gets objects and outputs in JSON or YAML format
• Provides a whois-like display of records
• Integrated local database sync
• Python library for integration with custom tools
• Available at http://peeringdb.github.io/peeringdb-py/
• Examples at https://github.com/grizz/pdb-examples
2017-02-28 12Apricot 2017, Ho Chi Minh City, Viet Nam
Status Page
2017-02-28 Apricot 2017, Ho Chi Minh City, Viet Nam 13
http://status.peeringdb.com/
Beta Development and Reporting Issues
• Beta server
• Available at https://beta.peeringdb.com/
• Runs the latest beta software version
• Full access over HTTP and the API
• Database is local to the beta server only, changes are not reflected on the
production servers
• Latest changes
• Available at https://beta.peeringdb.com/changes
• Redirects to the list of issues on GitHub
• Documents all of the changes in the current beta version
• Log bugs and feature requests at
https://github.com/peeringdb/peeringdb/issues on GitHub
2017-02-28 Apricot 2017, Ho Chi Minh City, Viet Nam 14
Agenda
• PeeringDB 2.0
• Membership and Governance
• Committees
• Sponsorship
• Information and Resources
2017-02-28 Apricot 2017, Ho Chi Minh City, Viet Nam 15
Membership and Governance
• PeeringDB organization formally formed 16 Dec, 2015
• PeeringDB 501(c)(6) filed 7 Jan, 2016 (approved 24 Feb, 2016)
• 2nd election held April 2016: 94 organizations registered, 80 voted
• 3rd election scheduled for April 2017
• 299 addresses subscribed to the Governance mailing list (as of 17 Oct 2016)
• A corporation, limited liability company, partnership or other legal business
entity may be a Member of the Corporation. Membership is determined by
having both an active PeeringDB.com account and an individual representative
or role subscription to the PeeringDB Governance mailing list:
• http://lists.peeringdb.com/cgi-bin/mailman/listinfo/pdb-gov
• More information available at http://gov.peeringdb.com/
2017-02-28 Apricot 2017, Ho Chi Minh City, Viet Nam 16
Board of Directors and Officers
2017-02-28 Apricot 2017, Ho Chi Minh City, Viet Nam 17
Chris Caputo – Secretary & Treasurer
(Non-Board Member)
Patrick Gilmore – Director
(Term Expires 2017)
Matt Griswold – Director
(Term Expires 2017)
Aaron Hughes – President
(Term Expires 2018)
Arnold Nipper – Director
(Term Expires 2017)
Job Snijders – Vice President
(Term Expires 2018)
Committees
• Manage administration of user accounts and
PeeringDB records
• Answer support tickets
• Board members Job Snijders (Chair) and
Arnold Nipper (Vice Chair)
• Seeking 2 community volunteers (1 year term)
• Contact: support@peeringdb.com
• Ask for input from the community on desired
features
• Manage roadmap and development priorities
• Write SoWs to solicit bids to complete
requested features
• Board members Aaron Hughes (Chair) and
Matt Griswold (Vice Chair)
• Seeking 0 community volunteers (1 year term)
• Contact: productcom@lists.peeringdb.com
2017-02-28 Apricot 2017, Ho Chi Minh City, Viet Nam 18
Admin Committee Product Committee
Samer
Abdel-Hafez
Hendrik
Braasch
Kate
Gerry
Peter
Helmenstine
Florian
Hibler
Eric
Lindsjö
Arnold Nipper –
Vice Chair
Eduardo
Ascenço Reis
Job Snijders –
Chair
Michael
Still
Admin Committee
2017-02-28 Apricot 2017, Ho Chi Minh City, Viet Nam 19
PeeringDB 2.0 Support Ticket Statistics
• Admin Committee volunteers are based around the world in a variety of time
zones
• Goal is to resolve support tickets within 24 hours
2017-02-28 Apricot 2017, Ho Chi Minh City, Viet Nam 20
Month Tickets Tickets/Day Resolve Time (d)
2016-03 954 31.80 0.94
2016-04 704 23.47 0.54
2016-05 657 21.90 0.50
2016-06 611 20.37 0.75
2016-07 536 17.87 0.27
2016-08 468 18.00 0.39
2016-09 633 21.10 0.32
2016-10 691 23.03 0.31
2016-11 691 23.03 0.88
2016-12 776 25.87 1.08
2017-01 707 23.57 1.30
Karthik
Arumugham
Matt Griswold –
Vice Chair
Greg
Hankins
Aaron Hughes –
Chair
Martin J.
Levy
Eric
Loos
Chris
Malayter
Stephen
McManus
Arnold
Nipper
Kay
Rechthien
Walt
Wollny
Product Committee
2017-02-28 Apricot 2017, Ho Chi Minh City, Viet Nam 21
Become a PeeringDB Sponsor!
• Diamond Sponsorship - $25,000 / year
• Limited to 2 sponsors
• Very large logo on top line of Sponsors page with URL
• Diamond Sponsor badge display on all records
• Social media promotion
• Platinum Sponsorship - $10,000 / year
• Large logo on second line of Sponsors page with URL
• Platinum Sponsor badge display on all records
• Social media promotion
• Gold Sponsorship - $5,000 / year
• Medium logo on third line of Sponsors page
• Gold Sponsor badge display on all records
• Social media promotion
• Silver Sponsorship - $2,500 / year
• Small logo on fourth line of Sponsors page
• Silver Sponsor badge display on all records
• Social media promotion
• Contact sponsorship@peeringdb.com for sponsorship info
2017-02-28 Apricot 2017, Ho Chi Minh City, Viet Nam 22
Diamond
Sponsors
Platinum
Sponsors
Gold
Sponsors
Silver
Sponsors
Thank you to our sponsors!
2017-02-28 Apricot 2017, Ho Chi Minh City, Viet Nam 2323
Information and Resources
• Announce list:
http://lists.peeringdb.com/cgi-
bin/mailman/listinfo/pdb-announce
• Governance list:
http://lists.peeringdb.com/cgi-
bin/mailman/listinfo/pdb-gov
• Technical list:
http://lists.peeringdb.com/cgi-
bin/mailman/listinfo/pdb-tech
• User Discuss list:
http://lists.peeringdb.com/cgi-
bin/mailman/listinfo/user-discuss
• Docs, presentations, guides, tools:
http://docs.peeringdb.com/
• Board and Officers:
stewards@lists.peeringdb.com
• Admins: support@peeringdb.com
• Bugs and feature requests:
https://github.com/peeringdb/peeringdb/
• Status: http://status.peeringdb.com/
• @PeeringDB
• https://www.facebook.com/peeringdb/
• https://www.linkedin.com/company/peerin
gdb
2017-02-28 Apricot 2017, Ho Chi Minh City, Viet Nam 24
Questions?
2017-02-28 Apricot 2017, Ho Chi Minh City, Viet Nam 25
Multiple Records Under a Single Organization
2017-02-28 Apricot 2017, Ho Chi Minh City, Viet Nam 26
Facilities are
Shown Here
LINX has 1
Facility
Networks are
Shown Here
LINX has 2
Network
Records
Exchanges are Shown Here
LINX has 6 Exchange Records
One Account Managing Multiple
Organizations
2017-02-28 Apricot 2017, Ho Chi Minh City, Viet Nam 27
Account “job” is
Affiliated with 4
Organizations
Request Ownership of an Existing
Organization
• Network records should already have an organization admin copied from
PeeringDB 1.0
• Facility and exchange records will need to have an organization admin assigned
2017-02-28 Apricot 2017, Ho Chi Minh City, Viet Nam 28
Click “Request Ownership”
Generates a Support Ticket for Validation and Approval
Register or Request Affiliation to an Existing
Organization
2017-02-28 Apricot 2017, Ho Chi Minh City, Viet Nam 29
1. Go to Your Profile2. Confirm Email Address
(Click Here if not Confirmed)
3. Enter ASN or
Organization Here
Autocomplete on
Existing ASNs and
Organizations in
PeeringDB
4. Click “Affiliate”
Existing: Organization
Admin Needs to Approve
New: Generates a Support
Ticket for Validation and
Approval
Adding a New Exchange to Your Organization
2017-02-28 Apricot 2017, Ho Chi Minh City, Viet Nam 30
Generates a Support Ticket
for Validation and Approval
Enter Exchange Info
Here, Then Click
“Submit Exchange”
Editing Your Exchange Record
2017-02-28 Apricot 2017, Ho Chi Minh City, Viet Nam 31
Enter Exchange
Info Here, Then
Click “Save”
Networks are Still Required to
Associate their Record at a
Facility or Exchange
Editing Your Exchange Record
2017-02-28 Apricot 2017, Ho Chi Minh City, Viet Nam 32
Enter LAN Info Here
Name – Optional Name
DOT1Q – 802.1Q Tag
MTU
IPv4/IPv6 Addresses
Add Facilities Here
Autocomplete on
Existing Facilities, Must
Contact Support to Add
a New Facility
Organization User Management
2017-02-28 Apricot 2017, Ho Chi Minh City, Viet Nam 33
Approve or Deny
Pending Requests
Delegate Permissions for Members
Admins Have Access to Everything
Change User Access Levels
Admin – Administrator
Member – Delegate Permissions
Remove Users From the Organization
Does not Remove the User Account From PeeringDB
Administrative Permission Delegation
2017-02-28 Apricot 2017, Ho Chi Minh City, Viet Nam 34
User “rho” can Manage the “Equinix Connect” Network Record, and Any Exchange or Facility
User “equinix-uk” can Manage Several Network Records, but no Exchanges or Facilities
Create – New Entries in Record
Update – Change Existing Entries in Record
Delete – Delete Entries in Record
Network Record Contact Information
Permissions
2017-02-28 Apricot 2017, Ho Chi Minh City, Viet Nam 35
Separate Visibility Preferences for Each Role
Private – Organization Only (Default)
Users – Registered Users Only
Public – Anyone (no Login Required)
Roles:
Abuse
Policy
Technical
NOC
Public Relations
Sales
PeeringDB IXP Statistics
• Not all networks are associated at an IXP even if they are connected
• As of 2017-02-21
2017-02-28 Apricot 2017, Ho Chi Minh City, Viet Nam 36
Region # of IXP # of members
at largest IXP
Total # of
members
(unique)
Total # of
members
(duplicates)
# of IXP most
peered ASN is
connected to
Africa 38 172 259 531 18
Australia 27 144 330 1005 17
Asia Pacific 80 208 762 1734 23
Europe 222 749 2963 8008 72
Middle East 8 41 66 76 3
North America 138 273 1480 3642 65
South America 62 735 966 1573 26

More Related Content

PPTX
Effective Document Capture in SharePoint - SharePoint Saturday Cape Town - 22...
PPTX
TechFuse 2012: SharePoint business applications at your fingertips
PPTX
SharePoint Saturday Richmond - Documents and Records in SharePoint, Really
PDF
IX-F Database and Tool
PDF
APNIC EC Report
PDF
Cooperation SIG Report
PDF
APNIC EC Treasure Report
PDF
NIR SIG Report
Effective Document Capture in SharePoint - SharePoint Saturday Cape Town - 22...
TechFuse 2012: SharePoint business applications at your fingertips
SharePoint Saturday Richmond - Documents and Records in SharePoint, Really
IX-F Database and Tool
APNIC EC Report
Cooperation SIG Report
APNIC EC Treasure Report
NIR SIG Report

Viewers also liked (20)

PDF
IX Peering Personals
PDF
EC Election Candidate Speeches
PDF
APNIC Activity Report 2016
PDF
ITHI: Identifier Technologies Health Indicators
PDF
HKNOG Update
PDF
DNSSEC Deployment for .VN and share information of DNSSEC's plan in 2017
PDF
BTNOG Update
PDF
IDNOG Update
PDF
APNIC EC Election Procedures
PDF
A Review of Community Network Technological Platform
PDF
NOG Reports
PDF
Using ~300 Billion DNS Queries to Analyse the TLD Name Collision Problem
PDF
IPv6 Deployment Status in Bangladesh
PDF
APIX Report
PDF
Taiwan IPv6 Measurement
PDF
NAT64/DNS64 experiments, warnings and one useful tool
PDF
IPv6 Deployment: Case of Sudan/SudREN
PDF
APNIC 43 Vote of Thanks
PDF
EURO-IX BMC - Benchmarking
PDF
The trend stats of routing table at JPIX route servers
IX Peering Personals
EC Election Candidate Speeches
APNIC Activity Report 2016
ITHI: Identifier Technologies Health Indicators
HKNOG Update
DNSSEC Deployment for .VN and share information of DNSSEC's plan in 2017
BTNOG Update
IDNOG Update
APNIC EC Election Procedures
A Review of Community Network Technological Platform
NOG Reports
Using ~300 Billion DNS Queries to Analyse the TLD Name Collision Problem
IPv6 Deployment Status in Bangladesh
APIX Report
Taiwan IPv6 Measurement
NAT64/DNS64 experiments, warnings and one useful tool
IPv6 Deployment: Case of Sudan/SudREN
APNIC 43 Vote of Thanks
EURO-IX BMC - Benchmarking
The trend stats of routing table at JPIX route servers
Ad

Similar to PeeringDB Update (20)

PPTX
PeeringDB Updates
PDF
Peering and Transit Tutorials: PeeringDB
PPTX
E-government architecture
PDF
Introduction to PeeringDB
PPTX
SharePoint Saturday Louisville 2012
PDF
Using Metadata and Classification in Records Management
PPSX
Basics of SharePoint
PPTX
Building a hybrid share point information governance plan
PDF
Rostelecom Social Platform (100,000+ employees)
PDF
RIPEstat
PPT
An Introduction To Share Point 2007
PPT
An Introduction To Share Point 2007
PDF
To Have Own Data Analytics Platform, Or NOT To
PDF
Going Meta – How to Use Metadata in SharePoint and Office 365
PPTX
SharePoint Saturday Toronto - Going Meta – How to Use Metadata in SharePoint ...
PPTX
The Rise of SharePoint as a Business Critical Hub
PPTX
CZSPC 2017 - Modern Business Applications: Microsoft flow, PowerApps & latest...
PPTX
Project Readout
PPTX
APNIC Whois Database Updates
PPTX
bdNOG 7: APNIC whois data quality
PeeringDB Updates
Peering and Transit Tutorials: PeeringDB
E-government architecture
Introduction to PeeringDB
SharePoint Saturday Louisville 2012
Using Metadata and Classification in Records Management
Basics of SharePoint
Building a hybrid share point information governance plan
Rostelecom Social Platform (100,000+ employees)
RIPEstat
An Introduction To Share Point 2007
An Introduction To Share Point 2007
To Have Own Data Analytics Platform, Or NOT To
Going Meta – How to Use Metadata in SharePoint and Office 365
SharePoint Saturday Toronto - Going Meta – How to Use Metadata in SharePoint ...
The Rise of SharePoint as a Business Critical Hub
CZSPC 2017 - Modern Business Applications: Microsoft flow, PowerApps & latest...
Project Readout
APNIC Whois Database Updates
bdNOG 7: APNIC whois data quality
Ad

More from APNIC (20)

PPTX
APNIC Report, presented at APAN 60 by Thy Boskovic
PDF
APNIC Update, presented at PHNOG 2025 by Shane Hermoso
PDF
RPKI Status Update, presented by Makito Lay at IDNOG 10
PDF
The Internet -By the Numbers, Sri Lanka Edition
PDF
Triggering QUIC, presented by Geoff Huston at IETF 123
PDF
DNSSEC Made Easy, presented at PHNOG 2025
PDF
BGP Security Best Practices that Matter, presented at PHNOG 2025
PDF
APNIC's Role in the Pacific Islands, presented at Pacific IGF 2205
PDF
IPv6 Deployment and Best Practices, presented by Makito Lay
PDF
Cleaning up your RPKI invalids, presented at PacNOG 35
PDF
The Internet - By the numbers, presented at npNOG 11
PDF
Transmission Control Protocol (TCP) and Starlink
PDF
DDoS in India, presented at INNOG 8 by Dave Phelan
PDF
Global Networking Trends, presented at the India ISP Conclave 2025
PDF
Make DDoS expensive for the threat actors
PDF
Fast Reroute in SR-MPLS, presented at bdNOG 19
PDF
DDos Mitigation Strategie, presented at bdNOG 19
PDF
ICP -2 Review – What It Is, and How to Participate and Provide Your Feedback
PDF
APNIC Update - Global Synergy among the RIRs: Connecting the Regions
PDF
Measuring Starlink Protocol Performance, presented at LACNIC 43
APNIC Report, presented at APAN 60 by Thy Boskovic
APNIC Update, presented at PHNOG 2025 by Shane Hermoso
RPKI Status Update, presented by Makito Lay at IDNOG 10
The Internet -By the Numbers, Sri Lanka Edition
Triggering QUIC, presented by Geoff Huston at IETF 123
DNSSEC Made Easy, presented at PHNOG 2025
BGP Security Best Practices that Matter, presented at PHNOG 2025
APNIC's Role in the Pacific Islands, presented at Pacific IGF 2205
IPv6 Deployment and Best Practices, presented by Makito Lay
Cleaning up your RPKI invalids, presented at PacNOG 35
The Internet - By the numbers, presented at npNOG 11
Transmission Control Protocol (TCP) and Starlink
DDoS in India, presented at INNOG 8 by Dave Phelan
Global Networking Trends, presented at the India ISP Conclave 2025
Make DDoS expensive for the threat actors
Fast Reroute in SR-MPLS, presented at bdNOG 19
DDos Mitigation Strategie, presented at bdNOG 19
ICP -2 Review – What It Is, and How to Participate and Provide Your Feedback
APNIC Update - Global Synergy among the RIRs: Connecting the Regions
Measuring Starlink Protocol Performance, presented at LACNIC 43

Recently uploaded (20)

PDF
The New Creative Director: How AI Tools for Social Media Content Creation Are...
PDF
💰 𝐔𝐊𝐓𝐈 𝐊𝐄𝐌𝐄𝐍𝐀𝐍𝐆𝐀𝐍 𝐊𝐈𝐏𝐄𝐑𝟒𝐃 𝐇𝐀𝐑𝐈 𝐈𝐍𝐈 𝟐𝟎𝟐𝟓 💰
PDF
FINAL CALL-6th International Conference on Networks & IOT (NeTIOT 2025)
PPTX
CHE NAA, , b,mn,mblblblbljb jb jlb ,j , ,C PPT.pptx
PPT
isotopes_sddsadsaadasdasdasdasdsa1213.ppt
DOCX
Unit-3 cyber security network security of internet system
PPTX
SAP Ariba Sourcing PPT for learning material
PPT
tcp ip networks nd ip layering assotred slides
PPTX
Introuction about ICD -10 and ICD-11 PPT.pptx
PPTX
522797556-Unit-2-Temperature-measurement-1-1.pptx
PPTX
artificial intelligence overview of it and more
PPTX
introduction about ICD -10 & ICD-11 ppt.pptx
PDF
How to Ensure Data Integrity During Shopify Migration_ Best Practices for Sec...
PPTX
Internet___Basics___Styled_ presentation
PPTX
Power Point - Lesson 3_2.pptx grad school presentation
PPTX
Introuction about WHO-FIC in ICD-10.pptx
PDF
Tenda Login Guide: Access Your Router in 5 Easy Steps
PPTX
international classification of diseases ICD-10 review PPT.pptx
PPTX
Introduction about ICD -10 and ICD11 on 5.8.25.pptx
PPT
Design_with_Watersergyerge45hrbgre4top (1).ppt
The New Creative Director: How AI Tools for Social Media Content Creation Are...
💰 𝐔𝐊𝐓𝐈 𝐊𝐄𝐌𝐄𝐍𝐀𝐍𝐆𝐀𝐍 𝐊𝐈𝐏𝐄𝐑𝟒𝐃 𝐇𝐀𝐑𝐈 𝐈𝐍𝐈 𝟐𝟎𝟐𝟓 💰
FINAL CALL-6th International Conference on Networks & IOT (NeTIOT 2025)
CHE NAA, , b,mn,mblblblbljb jb jlb ,j , ,C PPT.pptx
isotopes_sddsadsaadasdasdasdasdsa1213.ppt
Unit-3 cyber security network security of internet system
SAP Ariba Sourcing PPT for learning material
tcp ip networks nd ip layering assotred slides
Introuction about ICD -10 and ICD-11 PPT.pptx
522797556-Unit-2-Temperature-measurement-1-1.pptx
artificial intelligence overview of it and more
introduction about ICD -10 & ICD-11 ppt.pptx
How to Ensure Data Integrity During Shopify Migration_ Best Practices for Sec...
Internet___Basics___Styled_ presentation
Power Point - Lesson 3_2.pptx grad school presentation
Introuction about WHO-FIC in ICD-10.pptx
Tenda Login Guide: Access Your Router in 5 Easy Steps
international classification of diseases ICD-10 review PPT.pptx
Introduction about ICD -10 and ICD11 on 5.8.25.pptx
Design_with_Watersergyerge45hrbgre4top (1).ppt

PeeringDB Update

  • 2. Agenda • PeeringDB 2.0 • Membership and Governance • Committees • Sponsorship • Information and Resources 2017-02-28 Apricot 2017, Ho Chi Minh City, Viet Nam 2
  • 3. What is PeeringDB? • PeeringDB is the database of peering information on the Internet • Contains peering location and contact information for • Networks • Exchanges • Facilities • A PeeringDB record makes it easy for people to find you, and helps you to establish peering • If you aren’t registered in PeeringDB, you can register at https://www.peeringdb.com/register • We use basic verification for new accounts and require current whois information • Please update your whois information • Please register from a company email address 2017-02-28 Apricot 2017, Ho Chi Minh City, Viet Nam 3
  • 4. PeeringDB 2.0 is Here! • PeeringDB 2.0 launched 15 March, 2016 • Backend database (1.0) discontinued simultaneously • Last legacy SQL dump for public consumption: https://peeringdb.com/v1/dbexport/peeringdb.sql • Investigating 404s for old SQL to contact users • Questions to support@peeringdb.com • Challenges during the launch • Very minor bug fixes required, but overall a success! • Lots of support tickets • 20C (developer contractor) very responsive to community - thanks! • Current release: 2.0.14 2017-02-28 Apricot 2017, Ho Chi Minh City, Viet Nam 4
  • 5. 2017-02-28 Apricot 2017, Ho Chi Minh City, Viet Nam 5
  • 6. Key New Infrastructure Features • Complete rewrite in Python • Python: fast and clean, widely used and supported • HTML5: adaptive design for desktop and mobile • Support for a multideveloper environment • Redesigned schema with data validation • All data is permissioned and editable • Input validation on fields: IP addresses, email addresses, etc. • Validation in PeeringDB record: dropdown box to select ASN at exchange • Data versioning • Revision history for every data change • Easy to restore and roll back • Historical data import from CAIDA going back to 2010 (not available yet) • RESTful API • Stateless • Incremental database syncs • With documentation and tools, oh my! 2017-02-28 Apricot 2017, Ho Chi Minh City, Viet Nam 6
  • 7. Key New User Features • Facilities and exchanges can now update their own info • Networks are still required to associate their record at a facility or exchange • Multiple records of any type can be associated with an organization • Simpler organization management with a single account for network, facility, exchange records • One account can manage multiple organizations • Manage all of the things with a single account • Users can manage their accounts • Admin account for an organization can delegate fine-grained permissions • Contact info has permissions • Private/users/public permissions • All users must register, no more guest account • Public view can see all info except contact info (no login needed) • APIs and local database sync • Sync PeeringDB to a local database in any engine format 2017-02-28 Apricot 2017, Ho Chi Minh City, Viet Nam 7
  • 8. RESTful API Designed for Automation • All operations are supported and are designed to be automated • Read • Create • Update • Delete • Each object type has an associated tag • org • net • ix • fac • List of objects: https://peeringdb.com/apidocs/ • API documentation: http://docs.peeringdb.com/api_specs/ 2017-02-28 Apricot 2017, Ho Chi Minh City, Viet Nam 8
  • 9. Quick Examples Return Output in JSON • List all networks: curl -X GET https://<username>:<password>@www.peeringdb.com/api/net • Show a specific network: curl -X GET https://<username>:<password>@www.peeringdb.com/api/net/20 2017-02-28 Apricot 2017, Ho Chi Minh City, Viet Nam 9 {"meta": {}, "data": [{"id": 20, "org_id": 10356, "org": {"id": 10356, "name": "20C", "website": "http://20c.com", "notes": "", "net_set": [20], "fac_set": [], "ix_set": [], "address1": "", "address2": "", "city": "Chicago", "country": "US", "state": "IL", "zipcode": "", "created": "2014-11-17T14:59:34Z", "updated": "2016-03-23T20:39:18Z", "status": "ok"}, "name": "20C", "aka": "", "website": "http://20c.com", "asn": 63311, " ... }
  • 10. Local Database Sync • Database sync gives you a local copy of PeeringDB for customization or internal use • Sync as often as you like • Incremental sync is supported • Improves performance and reduces load on PeeringDB servers • Build custom indexes and interfaces • Add custom fields • Choice of database engines • Currently supported: MySQL, Postgres, SQLite • Sync using the provided tools or build your own using the API 2017-02-28 Apricot 2017, Ho Chi Minh City, Viet Nam 10
  • 11. Django Library • django-peeringdb is a Django library with a local PeeringDB database sync • Defines the database schema to create a local database copy • Easy to integrate in a common framework for locals tools and custom interfaces • Supports multiple database engines (MySQL, Postgres, SQLite) • Available at http://peeringdb.github.io/django-peeringdb/ 2017-02-28 Apricot 2017, Ho Chi Minh City, Viet Nam 11
  • 12. Python Client • peeringdb-py is a Python client for PeeringDB • Gets objects and outputs in JSON or YAML format • Provides a whois-like display of records • Integrated local database sync • Python library for integration with custom tools • Available at http://peeringdb.github.io/peeringdb-py/ • Examples at https://github.com/grizz/pdb-examples 2017-02-28 12Apricot 2017, Ho Chi Minh City, Viet Nam
  • 13. Status Page 2017-02-28 Apricot 2017, Ho Chi Minh City, Viet Nam 13 http://status.peeringdb.com/
  • 14. Beta Development and Reporting Issues • Beta server • Available at https://beta.peeringdb.com/ • Runs the latest beta software version • Full access over HTTP and the API • Database is local to the beta server only, changes are not reflected on the production servers • Latest changes • Available at https://beta.peeringdb.com/changes • Redirects to the list of issues on GitHub • Documents all of the changes in the current beta version • Log bugs and feature requests at https://github.com/peeringdb/peeringdb/issues on GitHub 2017-02-28 Apricot 2017, Ho Chi Minh City, Viet Nam 14
  • 15. Agenda • PeeringDB 2.0 • Membership and Governance • Committees • Sponsorship • Information and Resources 2017-02-28 Apricot 2017, Ho Chi Minh City, Viet Nam 15
  • 16. Membership and Governance • PeeringDB organization formally formed 16 Dec, 2015 • PeeringDB 501(c)(6) filed 7 Jan, 2016 (approved 24 Feb, 2016) • 2nd election held April 2016: 94 organizations registered, 80 voted • 3rd election scheduled for April 2017 • 299 addresses subscribed to the Governance mailing list (as of 17 Oct 2016) • A corporation, limited liability company, partnership or other legal business entity may be a Member of the Corporation. Membership is determined by having both an active PeeringDB.com account and an individual representative or role subscription to the PeeringDB Governance mailing list: • http://lists.peeringdb.com/cgi-bin/mailman/listinfo/pdb-gov • More information available at http://gov.peeringdb.com/ 2017-02-28 Apricot 2017, Ho Chi Minh City, Viet Nam 16
  • 17. Board of Directors and Officers 2017-02-28 Apricot 2017, Ho Chi Minh City, Viet Nam 17 Chris Caputo – Secretary & Treasurer (Non-Board Member) Patrick Gilmore – Director (Term Expires 2017) Matt Griswold – Director (Term Expires 2017) Aaron Hughes – President (Term Expires 2018) Arnold Nipper – Director (Term Expires 2017) Job Snijders – Vice President (Term Expires 2018)
  • 18. Committees • Manage administration of user accounts and PeeringDB records • Answer support tickets • Board members Job Snijders (Chair) and Arnold Nipper (Vice Chair) • Seeking 2 community volunteers (1 year term) • Contact: support@peeringdb.com • Ask for input from the community on desired features • Manage roadmap and development priorities • Write SoWs to solicit bids to complete requested features • Board members Aaron Hughes (Chair) and Matt Griswold (Vice Chair) • Seeking 0 community volunteers (1 year term) • Contact: productcom@lists.peeringdb.com 2017-02-28 Apricot 2017, Ho Chi Minh City, Viet Nam 18 Admin Committee Product Committee
  • 19. Samer Abdel-Hafez Hendrik Braasch Kate Gerry Peter Helmenstine Florian Hibler Eric Lindsjö Arnold Nipper – Vice Chair Eduardo Ascenço Reis Job Snijders – Chair Michael Still Admin Committee 2017-02-28 Apricot 2017, Ho Chi Minh City, Viet Nam 19
  • 20. PeeringDB 2.0 Support Ticket Statistics • Admin Committee volunteers are based around the world in a variety of time zones • Goal is to resolve support tickets within 24 hours 2017-02-28 Apricot 2017, Ho Chi Minh City, Viet Nam 20 Month Tickets Tickets/Day Resolve Time (d) 2016-03 954 31.80 0.94 2016-04 704 23.47 0.54 2016-05 657 21.90 0.50 2016-06 611 20.37 0.75 2016-07 536 17.87 0.27 2016-08 468 18.00 0.39 2016-09 633 21.10 0.32 2016-10 691 23.03 0.31 2016-11 691 23.03 0.88 2016-12 776 25.87 1.08 2017-01 707 23.57 1.30
  • 21. Karthik Arumugham Matt Griswold – Vice Chair Greg Hankins Aaron Hughes – Chair Martin J. Levy Eric Loos Chris Malayter Stephen McManus Arnold Nipper Kay Rechthien Walt Wollny Product Committee 2017-02-28 Apricot 2017, Ho Chi Minh City, Viet Nam 21
  • 22. Become a PeeringDB Sponsor! • Diamond Sponsorship - $25,000 / year • Limited to 2 sponsors • Very large logo on top line of Sponsors page with URL • Diamond Sponsor badge display on all records • Social media promotion • Platinum Sponsorship - $10,000 / year • Large logo on second line of Sponsors page with URL • Platinum Sponsor badge display on all records • Social media promotion • Gold Sponsorship - $5,000 / year • Medium logo on third line of Sponsors page • Gold Sponsor badge display on all records • Social media promotion • Silver Sponsorship - $2,500 / year • Small logo on fourth line of Sponsors page • Silver Sponsor badge display on all records • Social media promotion • Contact sponsorship@peeringdb.com for sponsorship info 2017-02-28 Apricot 2017, Ho Chi Minh City, Viet Nam 22
  • 23. Diamond Sponsors Platinum Sponsors Gold Sponsors Silver Sponsors Thank you to our sponsors! 2017-02-28 Apricot 2017, Ho Chi Minh City, Viet Nam 2323
  • 24. Information and Resources • Announce list: http://lists.peeringdb.com/cgi- bin/mailman/listinfo/pdb-announce • Governance list: http://lists.peeringdb.com/cgi- bin/mailman/listinfo/pdb-gov • Technical list: http://lists.peeringdb.com/cgi- bin/mailman/listinfo/pdb-tech • User Discuss list: http://lists.peeringdb.com/cgi- bin/mailman/listinfo/user-discuss • Docs, presentations, guides, tools: http://docs.peeringdb.com/ • Board and Officers: stewards@lists.peeringdb.com • Admins: support@peeringdb.com • Bugs and feature requests: https://github.com/peeringdb/peeringdb/ • Status: http://status.peeringdb.com/ • @PeeringDB • https://www.facebook.com/peeringdb/ • https://www.linkedin.com/company/peerin gdb 2017-02-28 Apricot 2017, Ho Chi Minh City, Viet Nam 24
  • 25. Questions? 2017-02-28 Apricot 2017, Ho Chi Minh City, Viet Nam 25
  • 26. Multiple Records Under a Single Organization 2017-02-28 Apricot 2017, Ho Chi Minh City, Viet Nam 26 Facilities are Shown Here LINX has 1 Facility Networks are Shown Here LINX has 2 Network Records Exchanges are Shown Here LINX has 6 Exchange Records
  • 27. One Account Managing Multiple Organizations 2017-02-28 Apricot 2017, Ho Chi Minh City, Viet Nam 27 Account “job” is Affiliated with 4 Organizations
  • 28. Request Ownership of an Existing Organization • Network records should already have an organization admin copied from PeeringDB 1.0 • Facility and exchange records will need to have an organization admin assigned 2017-02-28 Apricot 2017, Ho Chi Minh City, Viet Nam 28 Click “Request Ownership” Generates a Support Ticket for Validation and Approval
  • 29. Register or Request Affiliation to an Existing Organization 2017-02-28 Apricot 2017, Ho Chi Minh City, Viet Nam 29 1. Go to Your Profile2. Confirm Email Address (Click Here if not Confirmed) 3. Enter ASN or Organization Here Autocomplete on Existing ASNs and Organizations in PeeringDB 4. Click “Affiliate” Existing: Organization Admin Needs to Approve New: Generates a Support Ticket for Validation and Approval
  • 30. Adding a New Exchange to Your Organization 2017-02-28 Apricot 2017, Ho Chi Minh City, Viet Nam 30 Generates a Support Ticket for Validation and Approval Enter Exchange Info Here, Then Click “Submit Exchange”
  • 31. Editing Your Exchange Record 2017-02-28 Apricot 2017, Ho Chi Minh City, Viet Nam 31 Enter Exchange Info Here, Then Click “Save” Networks are Still Required to Associate their Record at a Facility or Exchange
  • 32. Editing Your Exchange Record 2017-02-28 Apricot 2017, Ho Chi Minh City, Viet Nam 32 Enter LAN Info Here Name – Optional Name DOT1Q – 802.1Q Tag MTU IPv4/IPv6 Addresses Add Facilities Here Autocomplete on Existing Facilities, Must Contact Support to Add a New Facility
  • 33. Organization User Management 2017-02-28 Apricot 2017, Ho Chi Minh City, Viet Nam 33 Approve or Deny Pending Requests Delegate Permissions for Members Admins Have Access to Everything Change User Access Levels Admin – Administrator Member – Delegate Permissions Remove Users From the Organization Does not Remove the User Account From PeeringDB
  • 34. Administrative Permission Delegation 2017-02-28 Apricot 2017, Ho Chi Minh City, Viet Nam 34 User “rho” can Manage the “Equinix Connect” Network Record, and Any Exchange or Facility User “equinix-uk” can Manage Several Network Records, but no Exchanges or Facilities Create – New Entries in Record Update – Change Existing Entries in Record Delete – Delete Entries in Record
  • 35. Network Record Contact Information Permissions 2017-02-28 Apricot 2017, Ho Chi Minh City, Viet Nam 35 Separate Visibility Preferences for Each Role Private – Organization Only (Default) Users – Registered Users Only Public – Anyone (no Login Required) Roles: Abuse Policy Technical NOC Public Relations Sales
  • 36. PeeringDB IXP Statistics • Not all networks are associated at an IXP even if they are connected • As of 2017-02-21 2017-02-28 Apricot 2017, Ho Chi Minh City, Viet Nam 36 Region # of IXP # of members at largest IXP Total # of members (unique) Total # of members (duplicates) # of IXP most peered ASN is connected to Africa 38 172 259 531 18 Australia 27 144 330 1005 17 Asia Pacific 80 208 762 1734 23 Europe 222 749 2963 8008 72 Middle East 8 41 66 76 3 North America 138 273 1480 3642 65 South America 62 735 966 1573 26