Skip to main content

REAL ID Act

How the REAL ID Act Impacts Californians

Beginning  October 1, 2020, the federal government will require your driver license or identification (ID) card to be REAL ID compliant if you wish to use it as identification to board an airplane or enter military bases and most federal facilities.
The California DMV will provide a federal compliant REAL ID driver license or ID card as an option to customers beginning January 22, 2018.
If you have a U.S. Passport, passport card, military ID, or another form of Transportation Safety Administration (TSA) approved identification, these documents will still be accepted to board an airplane.  Federally compliant identification will also be required to access military bases and most federal facilities.
The federal REAL ID Act of 2005 was passed in response to the events of 9/11.  For more on the REAL ID Act, visit the Department of Homeland Security website.

Do I need a REAL ID?

On January 22, 2018, the California DMV will issue two different types of cards, REAL ID Compliant DL/ID cards and Federal Non-Compliant DL/ID cards.
REAL ID Compliant DL/ID cards allow applicants to:
  • Use it as identification to board an airplane.
  • Enter military bases and most federal facilities.
    Note: This card is not needed until October 1, 2020.
Federal Non-Compliant DL/ID cards will consist of:
  • All DL/ID cards other than REAL ID Compliant DL/ID cards including DLs issued pursuant to AB 60.
The federal compliant REAL ID driver license or ID card is optional.
If you have a valid US Passport or US Passport Card, military ID, or other federally approved identification, you may use this as your form of identification to pass a TSA checkpoint at airports nationwide and visit a secure federal building or military installations at any time. Make sure to check with the federal facility/military base before you visit to verify their identification requirements.
There is no need to rush into a DMV field office. A valid California driver license or ID card can be used to board a commercial flight or enter secure federal facilities until October 1, 2020.
If you know you will not be boarding a domestic flight or visiting a secure federal facility or military base, you do not need a REAL ID driver license or ID card.
You do not need a federal compliant REAL ID driver license or ID card to do any of the following:
  • Drive
  • Apply for or receive federal benefits (Veterans Affairs, Social Security Administration, etc.)
  • Enter a federal facility that does not require ID (i.e. a post office)
  • Visit a hospital or receive life-saving services

How Do I Prepare to Apply for a REAL ID Card?

A DMV field office visit is required to apply for the new REAL ID card. To apply for a REAL ID card, you must do the following:
  • Make an appointment to visit a field office on or after January 22, 2018.
  • Provide proof of identity, such as a U.S. birth certificate, U.S. passport, employment authorization document, permanent resident card or foreign passport with an approved form I-94.     
  • Show a California residency document.
  • Present proof of your Social Security number.
The DMV will begin offering customers the option to apply for a REAL ID driver license or ID card on January 22, 2018.
View the list of document options to apply for a REAL ID card.

Married, Divorced, or Name Change? You may need to provide a name change document.

Name change document(s), such as a marriage certificate, may be required to issue a REAL ID driver license or ID card in your true full name. If the name on your identity document is different from the name you provided on your application, you must submit a document that establishes your true full name, for example:
  • Adoption documents that contain the legal names as a result of adoption.
  • A name change document that contains the legal name both before and after the name change.
  • Marriage certificate.
  • A certificate, declaration, or registration document verifying the formation of a domestic partnership.
  • Dissolution of marriage/domestic partnership document that contains the legal name as a result of the court action.

REAL ID Checklist

Use the REAL ID interactive checklist to gather the documents you will need to apply for a California REAL ID driver license or ID card.

New Driver License and Identification Card Design

Beginning January 22, 2018, all California driver license and ID cards will have a new design. Learn more about some of the new card features.

REAL ID Updates

The California DMV will continue to release updated information regarding REAL ID implementation.  Follow us on Twitter and Facebook.
The US Department of Homeland Security has additional information.

Comments

Popular posts from this blog

CKA Simulator Kubernetes 1.22

  https://killer.sh Pre Setup Once you've gained access to your terminal it might be wise to spend ~1 minute to setup your environment. You could set these: alias k = kubectl                         # will already be pre-configured export do = "--dry-run=client -o yaml"     # k get pod x $do export now = "--force --grace-period 0"   # k delete pod x $now Vim To make vim use 2 spaces for a tab edit ~/.vimrc to contain: set tabstop=2 set expandtab set shiftwidth=2 More setup suggestions are in the tips section .     Question 1 | Contexts Task weight: 1%   You have access to multiple clusters from your main terminal through kubectl contexts. Write all those context names into /opt/course/1/contexts . Next write a command to display the current context into /opt/course/1/context_default_kubectl.sh , the command should use kubectl . Finally write a second command doing the same thing into ...

OWASP Top 10 Threats and Mitigations Exam - Single Select

Last updated 4 Aug 11 Course Title: OWASP Top 10 Threats and Mitigation Exam Questions - Single Select 1) Which of the following consequences is most likely to occur due to an injection attack? Spoofing Cross-site request forgery Denial of service   Correct Insecure direct object references 2) Your application is created using a language that does not support a clear distinction between code and data. Which vulnerability is most likely to occur in your application? Injection   Correct Insecure direct object references Failure to restrict URL access Insufficient transport layer protection 3) Which of the following scenarios is most likely to cause an injection attack? Unvalidated input is embedded in an instruction stream.   Correct Unvalidated input can be distinguished from valid instructions. A Web application does not validate a client’s access to a resource. A Web action performs an operation on behalf of the user without checkin...