Search icon CANCEL
Subscription
0
Cart icon
Your Cart (0 item)
Close icon
You have no products in your basket yet
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Conferences
Free Learning
Arrow right icon
Zenoss Core 3.x Network and System Monitoring
Zenoss Core 3.x Network and System Monitoring

Zenoss Core 3.x Network and System Monitoring: A step-by-step guide to configuring, using, and adapting this free Open Source network monitoring system

eBook
$9.99 $32.99
Paperback
$54.99
Subscription
Free Trial
Renews at $19.99p/m

What do you get with Print?

Product feature icon Instant access to your digital eBook copy whilst your Print order is Shipped
Product feature icon Paperback book shipped to your preferred address
Product feature icon Download this book in EPUB and PDF formats
Product feature icon Access this title in our online reader with advanced features
Product feature icon DRM FREE - Read whenever, wherever and however you want
OR
Modal Close icon
Payment Processing...
tick Completed

Shipping Address

Billing Address

Shipping Methods
Table of content icon View table of contents Preview book icon Preview Book

Zenoss Core 3.x Network and System Monitoring

Chapter 2. Discovering Devices

I assume that many of you already have a working Zenoss Core installation with devices in your inventory; however, adding devices is the easy part. Before we jump to monitoring, we need to think about how we will monitor. For example, we can use Simple Network Management Protocol (SNMP), Windows Management Instrumentation (WMI), or command-line plugins that run over SSH/Telnet. Each of your monitored devices may have different requirements. We'll review each of the monitoring protocols to help you decide how to monitor your devices with Zenoss Core.

Because our Zenoss Core server needs to communicate with our monitored devices, we will need to configure those devices to allow connections on various TCP and UDP ports.

The order in which you perform the items in this chapter is not important. If you are starting a new installation, then it makes sense to prepare your devices to be monitored before you add them to your inventory. If you've already added devices...

Zenoss Core installation


Zenoss, Inc., makes several installation packages of Zenoss Core available to meet the needs of its community. For a list of current installation packages, visit www.zenoss.com/download. You'll find native packages, stack installers, and source files for several operating systems: Red Hat Enterprise Linux, Centos, Ubuntu, Fedora Core, OS X, OpenSuse, and Debian. The stack installers and native packages include all Zenoss Core dependencies.

If you need a no fuss installation to use as a sandbox or to follow along with the book, then I recommend loading one of the Zenoss Core VMware appliances for Windows, Linux, or OS X. To run the appliance, download the VMware Player or VMware Server for free from www.vmware.com.

Preparing devices for monitoring


One of the first questions we need to answer is, "How will I collect information from my devices and services?" Zenoss Core supports the following ways to model (collect data from) the device:

  • Simple Network Management Protocol (SNMP)

  • Windows Management Instrumentation (WMI)

  • SSH/Telnet (for example, Zenoss Plugins)

  • Port scan

SNMP gives us the most flexibility and the best device support. WMI lets us access information about services running on Windows servers and can co-exist with SNMP. If we want to monitor Windows event logs, then WMI is a must.

Even if your device supports SNMP, there may be times when you are unable to use it. For example, you're monitoring a remote device that's outside the local network. Zenoss, Inc., distributes a suite of command-line monitors that can be installed on a device via the Zenoss Plugins, and Zenoss Core runs the plugins over an SSH or Telnet session to collect the performance data.

In the unfortunate event that your device doesn...

Opening monitoring-specific ports


Both the Zenoss Core server and the monitored devices have port requirements. The Zenoss Core server needs to allow access to the following ports:

  • TCP port 8080 for HTTP access

  • TCP port 514 for syslog access, if Zenoss Core is acting as a syslog server

  • TCP port 22 for remote SSH access

  • UDP port 162 to process SNMP traps

To facilitate monitoring, the systems on the network need to allow access to the following ports:

  • UDP 161 for SNMP requests

  • TCP port 22 for remote collector plugins via SSH

  • TCP port 23 for remote collector plugins via Telnet

This is a common list of ports, but network and monitoring needs are unique from one site to the next. For example, if you do not plan to monitor any devices with the Zenoss Plugins over Telnet, then don't open port 23 on your monitored devices.

Configuring Linux firewalls

Iptables is a popular tool for managing firewall access on Linux systems. Assuming, iptables is installed and configured, use the following command to view...

Zenoss Core setup wizard


New installations automatically run a setup wizard that creates a user account, defines an administrator password, and discovers devices attached to the network. Many of you have probably already breezed through this step, but we'll step through the process for the benefit of those of you who are working through an initial install.

Even if you already ran the initial setup wizard, you can invoke the add device wizard by selecting the Add Multiple Devices... link on the Infrastructure | Devices page. See the following screenshot:

Note

To access your Zenoss Core installation, open a browser and navigate to port 8080 of your Zenoss Core server. For example, go to http://zenoss.example.com:8080 where zenoss.example.com is your web address.

Step 1: Setting up users

If this is a new installation, you will be greeted with the setup wizard when you visit the Zenoss Core application. Otherwise, you will see the Zenoss Core Dashboard.

Click the big green arrow to advance the wizard...

Adding a single device


We've seen how you can autodiscover the devices on your network, but you may not want to monitor all of the discovered networks. For example, you may have workstations, test servers, and other systems not worth monitoring. By adding a single device at a time, you can also specify device attributes, including classes, SNMP properties, serial numbers, notes, and more.

The Add Single Device option is available by clicking on Infrastructure | Devices. See the following screenshot:

The Add a Single Device window displays as a pop up with the option to add several device attributes:

The advantage of adding devices from this view is that we can add a device with a specific set of properties. The wizard didn't give us this kind of flexibility.

Entering device attributes

At a minimum, we should enter a Device Name and Device Class. The Device Name identifies the IP address or resolvable hostname, while the Device Class Path sets the monitoring properties we want our device to inherit...

Importing a list of devices with zenbatchload


So far, we've seen ways to build our device inventory through the web interface. In one case, we auto-discover everything and in the other case, we add the devices one at a time.

What if you already have a list of the SNMP capable devices by hostname or IP address? Wouldn't it be nice to import those devices. Zenoss Core can import a list of devices and attributes via the zenbatchload command.

In its simplest form, zebatchload will process a text file that lists one device per line. Here's a sample list of devices that I will call deviceList.txt:

device01
router02
web03

Since zenbatchload is a Zenoss Core daemon, we need to run it as the zenoss user. Here are the commands:

su – zenoss
<enter zenoss user's password>
zenbatchload deviceList.txt

The zenbatchload command will attempt to run SNMP on each device. If the device doesn't support SNMP, it won't be added to the inventory. The zenbatchload command accepts device classes, options, and zProperties...

Command line discovery with zendisc


The zendisc daemon gives us an opportunity to discover devices from the command line. It can be a helpful troubleshooting tool, or it can be a way for you to shed the Web interface and satisfy your curiosity about how Zenoss Core works. Let's take a look at a few example commands.

To see a list of available options, run the following command as the zenoss user:

zendisc help

Let's work through an example where we remodel a device on our network. Modeling the device gives Zenoss Core the characteristics about the device that we monitor. Sometimes Zenoss Core may not be collecting the information we think it should, so we need to figure out why.

Run the following command as the zenoss user:

zendisc run --remodel -d coyote --logseverity=10

Because we used the --logseverity=10 option, the output is verbose and we can step through the remodeling process, one line at a time. A value of 10 provides the highest level of verbosity.

The -d coyote option ran the --remodel...

Summary


In order to monitor a device, we need to tell Zenoss Core how to monitor the device. Our options include SNMP, WMI, or Zenoss Plugins over SSH. Then we have to make sure the monitored devices are configured to respond to the monitoring protocol Zenoss Core uses for each device.

As you look at your Zenoss Core device list, you should see a list of devices. However, you may see several events that indicate Zenoss Core is not able to model devices correctly. Events could also signify there's a problem with the monitored device, but we're just starting out. It's more likely we need to tweak the monitoring properties of each device.

A common point of failure in establishing the relationship between the monitoring server and monitored device is credentials. If you are having problems, make sure Zenoss Core can authenticate using the unique credentials for each device.

Our monitoring protocols also require access to specific ports. In this chapter, we outlined the common ports that Zenoss...

Left arrow icon Right arrow icon

Key benefits

  • Designed to quickly acquaint you with the core feature so you can customize Zenoss Core to your needs
  • Discover, manage, and monitor IT resources
  • Build custom event-processing and alerting rules
  • Write custom device reports to extract, display, and analyze monitoring data
  • A handy reference guide with loads of screenshots
  • An update of Zenoss Core Network and System Monitoring rewritten for Zenoss 3.x

Description

For system administrators, network engineers, and security analysts, it is essential to keep a track of network traffic. Zenoss Core is an enterprise-level systems and network monitoring solution that can be as complex as you need it to be. And while just about anyone can install it, turn it on, and monitor "something", Zenoss Core has a complicated interface packed with features. The interface has been drastically improved over version 2, but it's still not the type of software you can use intuitively – in other words, a bit of guidance is in order. The role of this book is to serve as your Zenoss Core tour guide and save you hours, days, maybe weeks of time. This book will show you how to work with Zenoss and effectively adapt Zenoss for System and Network monitoring. Starting with the Zenoss basics, it requires no existing knowledge of systems management, and whether or not you can recite MIB trees and OIDs from memory is irrelevant. Advanced users will be able to identify ways in which they can customize the system to do more, while less advanced users will appreciate the ease of use Zenoss provides. The book contains step-by-step examples to demonstrate Zenoss Core's capabilities. The best approach to using this book is to sit down with Zenoss and apply the examples found in these pages to your system. The book covers the monitoring basics: adding devices, monitoring for availability and performance, processing events, and reviewing reports. It also dives into more advanced customizations, such as custom device reports, external event handling (for example, syslog server, zensendevent, and Windows Event Logs), custom monitoring templates using SNMP data sources, along with Nagios, and Cacti plugins. An example of a Nagios-style plugin is included and the book shows you where to get an example of a Cacti-compatible plugin for use as a command data source in monitoring templates. In Zenoss Core, ZenPacks are modules that add monitoring functionality. Using the Nagios plugin example, you will learn how to create, package, and distribute a ZenPack. You also learn how to explore Zenoss Core's data model using zendmd so that you can more effectively write event transformations and custom device reports.

Who is this book for?

This book is written primarily for network and systems administrators who are monitoring their IT assets with Zenoss Core or who plan to monitor them. In reality, this book will benefit anyone, regardless of job title, who recognizes the importance of proactively monitoring the servers, routers, computers, websites, and devices that connect companies to customers.

What you will learn

  • Discover devices and prepare your monitoring environment
  • Set up, model, and configure devices
  • Monitor availability and performance
  • Customize monitoring templates using SNMP, Nagios, and Cacti data sources
  • Process events via the event console and event commands
  • Collect and process events (including event transformations) from non-Zenoss Core monitoring activities
  • Administer Zenoss Core s users, alerting rules, data backups, and settings
  • Review built-in reports and create custom graph and multi-graph reports
  • Write custom device reports and explore Zenoss Core data model with zendmd
  • Incorporate device and event attributes using TALES expressions throughout Zenoss Core
Estimated delivery fee Deliver to Colombia

Standard delivery 10 - 13 business days

$19.95

Premium delivery 3 - 6 business days

$40.95
(Includes tracking information)

Product Details

Country selected
Publication date, Length, Edition, Language, ISBN-13
Publication date : Apr 15, 2011
Length: 312 pages
Edition : 1st
Language : English
ISBN-13 : 9781849511582
Concepts :

What do you get with Print?

Product feature icon Instant access to your digital eBook copy whilst your Print order is Shipped
Product feature icon Paperback book shipped to your preferred address
Product feature icon Download this book in EPUB and PDF formats
Product feature icon Access this title in our online reader with advanced features
Product feature icon DRM FREE - Read whenever, wherever and however you want
OR
Modal Close icon
Payment Processing...
tick Completed

Shipping Address

Billing Address

Shipping Methods
Estimated delivery fee Deliver to Colombia

Standard delivery 10 - 13 business days

$19.95

Premium delivery 3 - 6 business days

$40.95
(Includes tracking information)

Product Details

Publication date : Apr 15, 2011
Length: 312 pages
Edition : 1st
Language : English
ISBN-13 : 9781849511582
Concepts :

Packt Subscriptions

See our plans and pricing
Modal Close icon
$19.99 billed monthly
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Simple pricing, no contract
$199.99 billed annually
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Choose a DRM-free eBook or Video every month to keep
Feature tick icon PLUS own as many other DRM-free eBooks or Videos as you like for just $5 each
Feature tick icon Exclusive print discounts
$279.99 billed in 18 months
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Choose a DRM-free eBook or Video every month to keep
Feature tick icon PLUS own as many other DRM-free eBooks or Videos as you like for just $5 each
Feature tick icon Exclusive print discounts

Frequently bought together


Stars icon
Total $ 164.97
Nagios Core Administration Cookbook
$54.99
CentOS 6 Linux Server Cookbook
$54.99
Zenoss Core 3.x Network and System Monitoring
$54.99
Total $ 164.97 Stars icon
Banner background image

Table of Contents

11 Chapters
Network and System Monitoring with Zenoss Core Chevron down icon Chevron up icon
Discovering Devices Chevron down icon Chevron up icon
Device Setup and Administration Chevron down icon Chevron up icon
Monitor Status and Performance Chevron down icon Chevron up icon
Custom Monitoring Templates Chevron down icon Chevron up icon
Core Event Management Chevron down icon Chevron up icon
Collecting Events Chevron down icon Chevron up icon
Settings and Administration Chevron down icon Chevron up icon
Extending Zenoss Core with ZenPacks Chevron down icon Chevron up icon
Reviewing Built-in Reports Chevron down icon Chevron up icon
Writing Custom Device Reports Chevron down icon Chevron up icon

Customer reviews

Rating distribution
Full star icon Full star icon Full star icon Full star icon Full star icon 5
(2 Ratings)
5 star 100%
4 star 0%
3 star 0%
2 star 0%
1 star 0%
lfean32 Jul 16, 2011
Full star icon Full star icon Full star icon Full star icon Full star icon 5
System monitoring is a hot topic if you are trying to deliver a stable environment for your users or clients. There are many options out there that are capable of letting administrators know when a system is down or at risk for example Solarwinds is one of the popular monitoring applications today. But there are some new names in the ring and this time they come from the open source community so there is a free version for all to use, this is Zenoss Core a robust community driven snmp application. I just finished reading the new technical book on the latest version of Zenoss Core put out by Packetpub to see how well it does to get you running your own Zenoss Core server.To follow along with the book Zenoss offers a downloadable VMware appliance with the application already installed and it comes for Windows, Linux and OS X. I downloaded the OS X appliance so I could have a sandbox to play with while reading the book, I would highly recommend this so you are able to get used to the user interface.If you are thinking about installing Zenoss or already using it, this book is a must have to bridge the gap in documentation. I found the book had all the information I needed to help get my environment up and running and it was easy to follow. There are also more advanced topics covered such as ZenPack add ons. ZenPacks are one of Zenoss's most exciting feature, they are community derived and shared through the Zenoss website. You will find thousands of ZenPacks which are completely customized to monitor very specific devices, a couple of examples would be apache web servers, asterisk voip servers, and pretty much any server-based application or device else you can think of. Users create a ZenPacks then upload to share with the community, this is a great use of the open source community to help us all make sure our servers have the highest uptime.Overall I would recommend this book to anyone looking for a snmp application since Zenoss Core is an open source application and has the best price tag of all, free. Before starting to look at expensive snmp systems do yourself a favor and read this book to see how well Zenoss does with monitoring servers.
Amazon Verified review Amazon
Andrea Consadori Jun 01, 2011
Full star icon Full star icon Full star icon Full star icon Full star icon 5
I'm using Zenoss for many years and this book is not only a "how to use zenoss" book but it also lead you trought networking world with lots of practical examples and it fills the gaps not covered by Zenoss Admin Guide.What's new in this book?Previous book cover zenoss 2.x, this one zenoss 3.x and it's not only an "estatical" emprove but Zenoss 3.x buit on Zenoss 2.x experience now is the most powerful easy and robust network monitoring system I've ever known.I'm not simply a Zenoss addicted: I'm a Zenoss conviced because I previously tested Nagios, Zabbix, Pandora fms, OpenNMS.This book leads you chapter by chapter on how use all the Zenoss features with lots of examples in order to show you how Zenoss can assist you to monitor your network and you will see that the only limitation is your imagination and coding experience.Reading this book you will learn how to monitor your network even if you've Linux/Windows mixed infrastructure without installing any 3rd part agent on your server, how to correlate Windows event log and syslog event to alerting engine and how to create custom graph using informations taken from device throught snmp, wmic, wbem or linux shell script.[...]
Amazon Verified review Amazon
Get free access to Packt library with over 7500+ books and video courses for 7 days!
Start Free Trial

FAQs

What is the delivery time and cost of print book? Chevron down icon Chevron up icon

Shipping Details

USA:

'

Economy: Delivery to most addresses in the US within 10-15 business days

Premium: Trackable Delivery to most addresses in the US within 3-8 business days

UK:

Economy: Delivery to most addresses in the U.K. within 7-9 business days.
Shipments are not trackable

Premium: Trackable delivery to most addresses in the U.K. within 3-4 business days!
Add one extra business day for deliveries to Northern Ireland and Scottish Highlands and islands

EU:

Premium: Trackable delivery to most EU destinations within 4-9 business days.

Australia:

Economy: Can deliver to P. O. Boxes and private residences.
Trackable service with delivery to addresses in Australia only.
Delivery time ranges from 7-9 business days for VIC and 8-10 business days for Interstate metro
Delivery time is up to 15 business days for remote areas of WA, NT & QLD.

Premium: Delivery to addresses in Australia only
Trackable delivery to most P. O. Boxes and private residences in Australia within 4-5 days based on the distance to a destination following dispatch.

India:

Premium: Delivery to most Indian addresses within 5-6 business days

Rest of the World:

Premium: Countries in the American continent: Trackable delivery to most countries within 4-7 business days

Asia:

Premium: Delivery to most Asian addresses within 5-9 business days

Disclaimer:
All orders received before 5 PM U.K time would start printing from the next business day. So the estimated delivery times start from the next day as well. Orders received after 5 PM U.K time (in our internal systems) on a business day or anytime on the weekend will begin printing the second to next business day. For example, an order placed at 11 AM today will begin printing tomorrow, whereas an order placed at 9 PM tonight will begin printing the day after tomorrow.


Unfortunately, due to several restrictions, we are unable to ship to the following countries:

  1. Afghanistan
  2. American Samoa
  3. Belarus
  4. Brunei Darussalam
  5. Central African Republic
  6. The Democratic Republic of Congo
  7. Eritrea
  8. Guinea-bissau
  9. Iran
  10. Lebanon
  11. Libiya Arab Jamahriya
  12. Somalia
  13. Sudan
  14. Russian Federation
  15. Syrian Arab Republic
  16. Ukraine
  17. Venezuela
What is custom duty/charge? Chevron down icon Chevron up icon

Customs duty are charges levied on goods when they cross international borders. It is a tax that is imposed on imported goods. These duties are charged by special authorities and bodies created by local governments and are meant to protect local industries, economies, and businesses.

Do I have to pay customs charges for the print book order? Chevron down icon Chevron up icon

The orders shipped to the countries that are listed under EU27 will not bear custom charges. They are paid by Packt as part of the order.

List of EU27 countries: www.gov.uk/eu-eea:

A custom duty or localized taxes may be applicable on the shipment and would be charged by the recipient country outside of the EU27 which should be paid by the customer and these duties are not included in the shipping charges been charged on the order.

How do I know my custom duty charges? Chevron down icon Chevron up icon

The amount of duty payable varies greatly depending on the imported goods, the country of origin and several other factors like the total invoice amount or dimensions like weight, and other such criteria applicable in your country.

For example:

  • If you live in Mexico, and the declared value of your ordered items is over $ 50, for you to receive a package, you will have to pay additional import tax of 19% which will be $ 9.50 to the courier service.
  • Whereas if you live in Turkey, and the declared value of your ordered items is over € 22, for you to receive a package, you will have to pay additional import tax of 18% which will be € 3.96 to the courier service.
How can I cancel my order? Chevron down icon Chevron up icon

Cancellation Policy for Published Printed Books:

You can cancel any order within 1 hour of placing the order. Simply contact customercare@packt.com with your order details or payment transaction id. If your order has already started the shipment process, we will do our best to stop it. However, if it is already on the way to you then when you receive it, you can contact us at customercare@packt.com using the returns and refund process.

Please understand that Packt Publishing cannot provide refunds or cancel any order except for the cases described in our Return Policy (i.e. Packt Publishing agrees to replace your printed book because it arrives damaged or material defect in book), Packt Publishing will not accept returns.

What is your returns and refunds policy? Chevron down icon Chevron up icon

Return Policy:

We want you to be happy with your purchase from Packtpub.com. We will not hassle you with returning print books to us. If the print book you receive from us is incorrect, damaged, doesn't work or is unacceptably late, please contact Customer Relations Team on customercare@packt.com with the order number and issue details as explained below:

  1. If you ordered (eBook, Video or Print Book) incorrectly or accidentally, please contact Customer Relations Team on customercare@packt.com within one hour of placing the order and we will replace/refund you the item cost.
  2. Sadly, if your eBook or Video file is faulty or a fault occurs during the eBook or Video being made available to you, i.e. during download then you should contact Customer Relations Team within 14 days of purchase on customercare@packt.com who will be able to resolve this issue for you.
  3. You will have a choice of replacement or refund of the problem items.(damaged, defective or incorrect)
  4. Once Customer Care Team confirms that you will be refunded, you should receive the refund within 10 to 12 working days.
  5. If you are only requesting a refund of one book from a multiple order, then we will refund you the appropriate single item.
  6. Where the items were shipped under a free shipping offer, there will be no shipping costs to refund.

On the off chance your printed book arrives damaged, with book material defect, contact our Customer Relation Team on customercare@packt.com within 14 days of receipt of the book with appropriate evidence of damage and we will work with you to secure a replacement copy, if necessary. Please note that each printed book you order from us is individually made by Packt's professional book-printing partner which is on a print-on-demand basis.

What tax is charged? Chevron down icon Chevron up icon

Currently, no tax is charged on the purchase of any print book (subject to change based on the laws and regulations). A localized VAT fee is charged only to our European and UK customers on eBooks, Video and subscriptions that they buy. GST is charged to Indian customers for eBooks and video purchases.

What payment methods can I use? Chevron down icon Chevron up icon

You can pay with the following card types:

  1. Visa Debit
  2. Visa Credit
  3. MasterCard
  4. PayPal
What is the delivery time and cost of print books? Chevron down icon Chevron up icon

Shipping Details

USA:

'

Economy: Delivery to most addresses in the US within 10-15 business days

Premium: Trackable Delivery to most addresses in the US within 3-8 business days

UK:

Economy: Delivery to most addresses in the U.K. within 7-9 business days.
Shipments are not trackable

Premium: Trackable delivery to most addresses in the U.K. within 3-4 business days!
Add one extra business day for deliveries to Northern Ireland and Scottish Highlands and islands

EU:

Premium: Trackable delivery to most EU destinations within 4-9 business days.

Australia:

Economy: Can deliver to P. O. Boxes and private residences.
Trackable service with delivery to addresses in Australia only.
Delivery time ranges from 7-9 business days for VIC and 8-10 business days for Interstate metro
Delivery time is up to 15 business days for remote areas of WA, NT & QLD.

Premium: Delivery to addresses in Australia only
Trackable delivery to most P. O. Boxes and private residences in Australia within 4-5 days based on the distance to a destination following dispatch.

India:

Premium: Delivery to most Indian addresses within 5-6 business days

Rest of the World:

Premium: Countries in the American continent: Trackable delivery to most countries within 4-7 business days

Asia:

Premium: Delivery to most Asian addresses within 5-9 business days

Disclaimer:
All orders received before 5 PM U.K time would start printing from the next business day. So the estimated delivery times start from the next day as well. Orders received after 5 PM U.K time (in our internal systems) on a business day or anytime on the weekend will begin printing the second to next business day. For example, an order placed at 11 AM today will begin printing tomorrow, whereas an order placed at 9 PM tonight will begin printing the day after tomorrow.


Unfortunately, due to several restrictions, we are unable to ship to the following countries:

  1. Afghanistan
  2. American Samoa
  3. Belarus
  4. Brunei Darussalam
  5. Central African Republic
  6. The Democratic Republic of Congo
  7. Eritrea
  8. Guinea-bissau
  9. Iran
  10. Lebanon
  11. Libiya Arab Jamahriya
  12. Somalia
  13. Sudan
  14. Russian Federation
  15. Syrian Arab Republic
  16. Ukraine
  17. Venezuela