Author: bandel

  • 1. Why ?

    There are lot of ways of how you can manage you company, home or corporate DNS zones. You can offload this task to any DNS registar, you can use any available DNS server software with any back-end that you like, or … you can use Zabbix and particularly Zabbix database as your trusty backend. Let’s look at the simple fact, that you already installed and configured Zabbix on your network. And you invested considerable time and effort of doing so. And. looking inside Zabbix, you see, that it knows a great deal about your infrastructure. It’s host names and IP addresses. Maybe, you are also running discovery process on your network and keeping this portion of configuration up-to date. Maybe you already integrate Zabbix with your inventory system. And with your ticketing system. If you did not done that already, maybe you should. So, your Zabbix installation already one of the central points of your enterprise management. Any reason, why you still using vi to manage your DNS zones or paying somebody to do this for you, when you have all you needed at your fingertips ?

    2. What you will need ?

    Aside from Zabbix itself, not much:

    Some time and software development skills …

    3. Prepare your environment.

    I will not be covering on how to install and configure Python on your target hosts. You can install it from rpm/deb repositories or compile yourself from the scratch. Second, download unbound DNS resolver and compile it. I am doing this using command

    ./configure --with-libevent --with-pyunbound --with-pthreads --with-ssl --with-pythonmodule

    Please note, that you shall have development files for libevent, openssl, posix threads and the Python on your host.

    Next, compile and install REDIS server. I will leave you with excellent Redis documentation as your guide through this process. All I want to say: “It is not difficult to do”. After you’ve compiled and installed Redis, install Python redis module – redis-py.

    4. Overview of the design.

    You will have number of components on your Zabbix-DNS infrastructure.

    • REDIS servers. Will be serving as a primary storage for you direct and reverse mappings. Depending on the size of your DNS zones, you may want to scale the memory for the hosts on which you will run your
      REDIS servers. All REDIS servers are configured for persistency.
    • DNS_REDIS_SYNC. Script, which will query SQL table interfaces from zabbix database and populate master REDIS server.
    • resolver.py. Unbound python script, which will provide a proper interfacing between zabbix database, REDIS and UNBOUND resolver

    5. Masters and slaves.

    I am intentionaly insisiting on more complicated master-slave configuration for your installation. When you will need to scale your DNS cluster, you will appretiate that you’ve done this. Depending on your Zabbix configuration, you may be choosing appropriate location for your master REDIS server and DNS_REDIS_SYNC process.

    Depending on the size of your Zabbix and number of NVPS, you may consider to perform “select” operations on SQL table “interface” on the less busy with inserts and updates slave MySQL server.

    How to setup master-slave MySQL replication is outside of the scope of this article.

    Google it. Slave REDIS node shall be local to a DNS resolver.

    6. DNS_REDIS_SYNC

    DNS_REDIS_SYNC is a simple Python (or whatever language you choose to use, as long as it can interface with MySQL and REDIS) script, which designed to populate master REDIS storage. In order to get information from table interface, you may issue query

    select interfaceid,ip,dns from interface where type = 1

    When you’ve got all you Name->IP associations from Zabbix database, start to populate direct and reverse zones in REDIS, like

    SET A:%(name) %(ip)

    SET PTR:%(ip) %(name)

    you do not want keys to stick in you REDIS forever, so I recommend to set conservative expiration for your keys. See Chapter #7

    EXPIRE A:%(name) %(expiration_time_in_sec)

    EXPIRE PTR:%(ip) %(expiration_time_in_sec)

    That’s it. Your REDIS database is ready to be used by resolver.py module.

    7. Expire or not to expire.

    The easiest and more dangerous way to remove the old info from DNS zones stored in REDIS, is to use REDIS EXPIRE commands and capabilities. This will work great if you never get in the situation like this

    Downtime of the Zabbix MySQL server > Key expiration time.

    One way on how to deal with that situation is to monitor the downtime of the primary Zabbix MySQL from another Zabbix server, which configured to monitor primary server (you shall have this server already) and when downtime crosses pessimistic threshold, execute Action script, which will extend TTL for the keys in the master REDIS server.

    8. Anathomy of the resolver.py

    Before you will write your resolver.py, consult Unbund documentation on how to write unbound python modules and how to use unbound module. Also, you shall be aware of “gotcha” for the resolver.py . Since it is executed in “embedded Python”, it does not inherit information about location of the some of the python modules. Be prepared to define path to those modules using sys.path.append(…) calls.

    Main callback for the query processing inside resolver.py will be function “operate(id, event, qstate, qdata)”. Parameters are:

    • id, is a module identifier (integer);
    • event, type of the event accepted by module. Look at the documentation of which event types are there. For the resolver, we do need to catch MODULE_EVENT_PASS and MODULE_EVENT_NEW
    • qstate, is a module_qstate data structure
    • qdata , is a query_info data structure

    First, qstate.qinfo.qname_str will contain your query. The best way to detect if this is a query of the direct or reverse zones is to issue this call

    <em>socket.inet_aton(qstate.qinfo.qname_str[:-1])</em>

    and then catch the exceptions. If you have an exception, then it direct zone, of not – reverse.

    Second, you will be needed to build a return message, like this:

    msg = DNSMessage(qstate.qinfo.qname_str, RR_TYPE_A, RR_CLASS_IN, PKT_QR | PKT_RA | PKT_AA)

    Then, depend on which zone you shall query, you sent a one of the following requests to REDIS:

    GET A:%(name)

    GET PTR:%(ip)

    if REDIS returns None, you shall query Zabbix mysql database with one of the following queries:

    select interfaceid,ip,dns from interface where type = 1 and dns = ‘%(name)’;

    select interfaceid,ip,dns from interface where type = 1 and ip = ‘%(ip)’;

    If MySQL query returned data, you shall populate REDIS as described in Chapter 6, fill return message and invalidate and re-populate UNBOUND cache using following calls:

    invalidateQueryInCache(qstate, qstate.return_msg.qinfo)

    storeQueryInCache(qstate, qstate.return_msg.qinfo, qstate.return_msg.rep, 0)

    Return message is filled by appending results to a msg.answer

    "%(name) 900 IN A %(ip)"
    "%(in_addr_arpa) 900 IN PTR %(name)."

    for direct and reverse zones.

    qstate alse shall be updated with information about return message before you manipulate with UNBOUND cache

    msg.set_return_msg(qstate)

    9. Summary.

    Well, now you know enough on how to integrate information from your Zabbix instance into your enterprise.

  • Plymouth – Getting Started Guide

    Editing Plymouth

    You can edit Plymouth with a simple text editor for animations and images. This is Ubuntu version agnostic.

    Original to New
    • Get Template
    • Customize Template
    • Set Custom Theme

    Make a template

    First you will get a template that covers all the basic aspects of a Plymouth. Change my-theme to your own personal them name.

    sudo cp --recursive /lib/plymouth/themes/ubuntu-logo ~/themes/my-theme

    Customize file names

    Now you can change some names to help identify our theme from others.

    sudo mv ubuntu-logo.plymouth my-theme.plymouth
    sudo mv ubuntu-logo.script my-theme.script
    sudo mv ubuntu-logo.grub my-theme.grub
    sudo mv ubuntu_logo16.png my_theme16.png
    sudo mv ubuntu_logo.png my_theme.png

    Edit image files

    Use your image editor of choice to alter the png images. I like GIMP for quick edits.

    gimp my_theme.png my_theme16.png
    gimp progress_dot_on.png progress_dot_off.png
    gimp progress_dot_on16.png progress_dot_off16.png

    Here is an example of my alterations:

    Edit the configuration files.

    1. Set up theme information file.
    gedit my-theme.plymouth

    Edit lines 2, 7, and 8 and change ubuntu logo to you theme name.

    [Plymouth Theme]
    Name=My Theme
    Description=A theme that features a blank background with a logo.
    ModuleName=script
    
    [script]
    ImageDir=/lib/plymouth/themes/my-theme
    ScriptFile=/lib/plymouth/themes/my-theme/my-theme.script

    For 17.10+, replace /lib/plymouth/themes with /usr/share/plymouth/themes

    1. Start-up terminal color. (Optional)
    gedit my-theme.grub

    Change it from purple to something else.

    Edit line 1 with RGB color code.

    A good site to help you is Color-Hex. I am just going to make mine black.

    if background_color 0,0,0; then
        clear
    fi

    The script file to apply theme changes

    gedit my-theme.script

    There is many different aspects to this file that you can change to customize your plymouth boot theme. If you wish to do more advanced changes you should study it. I am only showing how to change the background color, logo, and status indicator.

    Edit lines 169, 170, 174, and 180 to change the background gradient and images you edited earlier.

    Window.SetBackgroundTopColor (0.66, 0.66, 0.66);       #top
    Window.SetBackgroundBottomColor (0.146, 0.146, 0.146); #bottom
    
    bits_per_pixel = Window.GetBitsPerPixel ();
    if (bits_per_pixel == 4) {
        logo_filename = "my_theme16.png";
        progress_dot_off_filename = "progress_dot_off16.png";
        progress_dot_on_filename = "progress_dot_on16.png";
        password_field_filename = "password_field16.png";
        question_field_filename = "password_field16.png";
    } else {
        logo_filename = "my_theme.png";
        progress_dot_off_filename = "progress_dot_off.png";
        progress_dot_on_filename = "progress_dot_on.png";
        password_field_filename = "password_field.png";
        question_field_filename = "password_field.png";
    }

    Send your theme folder

    cp --recursive ~/themes/my-theme /lib/plymouth/themes

    Set Plymouth configuration to use theme.

    sudo ln -sf /lib/plymouth/themes/my-theme/my-theme.plymouth /etc/alternatives/default.plymouth
    sudo ln -sf /lib/plymouth/themes/my-theme/my-theme.grub /etc/alternatives/default.plymouth.grub

    18.04+

    sudo update-initramfs -u

    Restart to watch it in action.

    You can get a list of themes available via the repositories through Synaptic Package Manager or through the command line via aptitude:

    $ aptitude search plymouth-theme
    p   lubuntu-plymouth-theme        - plymouth theme for Lubuntu
    p   plymouth-theme-fade-in        - graphical boot animation and logger - fade-in theme
    p   plymouth-theme-glow           - graphical boot animation and logger - glow theme
    i   plymouth-theme-kubuntu-logo   - graphical boot animation and logger - kubuntu-logo theme
    p   plymouth-theme-sabily         - plymouth theme for Sabily
    p   plymouth-theme-script         - graphical boot animation and logger - script theme
    p   plymouth-theme-solar          - graphical boot animation and logger - solar theme
    p   plymouth-theme-spinfinity     - graphical boot animation and logger - spinfinity theme
    p   plymouth-theme-text           - graphical boot animation and logger - text theme
    c   plymouth-theme-ubuntu-logo    - graphical boot animation and logger - ubuntu-logo theme
    i   plymouth-theme-ubuntu-text    - graphical boot animation and logger - ubuntu-logo theme
    p   plymouth-theme-ubuntustudio   - Ubuntu Studio Plymouth theme
    p   xubuntu-plymouth-theme        - Plymouth theme for Xubuntu

    You can then install the resulting packages via Synaptic or apt as normal:

    $ sudo apt install plymouth-theme-solar

    If you’re looking for something not in the repositories, UbuntuGeek has an excellent tutorial on how to install and create your own custom Plymouth themes.

  • How-To Geek is an online technology magazine created

    How-To Geek is an online technology magazine created

    Amazon, which already charges some of the world’s lowest fees for Prime Video in India, is going a step further to win more users in the world’s second largest internet market. The e-commerce giant on Saturday launched miniTV, an ad-supported video streaming service that is available within the Amazon shopping app and is “completely free.” miniTV is currently available only in India, Amazon said.

    miniTV features web-series, comedy shows, and content around tech news, food, beauty, fashion “to begin with,” Amazon said. Some of the titles currently available have been produced by leading studios such as TVF and Pocket Aces — two of the largest web studios in India — and comedians such as Ashish Chanchlani, Amit Bhadana, Round2Hell, Harsh Beniwal, Shruti Arjun Anand, Elvish Yadav, Prajakta Koli, Swagger Sharma, Aakash Gupta and Nishant Tanwar.

    “Viewers will be informed on latest products and trends by tech expert Trakin Tech, fashion and beauty experts such as Sejal Kumar, Malvika Sitlani, Jovita George, Prerna Chhabra and ShivShakti. Food lovers can enjoy content from Kabita’s Kitchen, Cook with Nisha, and Gobble. In the coming months, miniTV will add many more new and exclusive videos,” the company added, without sharing its future roadmap plans. (Amazon began integrating reviews and other web clippings — from media houses — on its shopping service in India for more than two years ago.)

    miniTV is currently available on Amazon’s Android app, and will arrive on the iOS counterpart and mobile web over the coming months, Amazon said.

    Amazon’s move follows a similar step by Walmart’s Flipkart, the company’s marquee rival in India, which rolled out video streaming service within its app in 2019. In recent years, scores of firms in India including Zomato have explored adding a video streaming offering to their own apps.

    Amazon has also aggressively pushed to expand its Prime Video offerings in India in recent quarters. The company — which partnered with Indian telecom network Airtel earlier this year to launch a new monthly mobile-only, single-user, standard definition (SD) tier (for $1.22) — has secured rights to stream some cricket matches in the country. Amazon also offers Prime Video as part of its Amazon Prime subscription in India.

    21
    • Share On:
    Writer

    Mark Spenser |

    Mark Spenser is a local NY resident and an avid geek. When he’s not rediscovering his island state, he enjoys spending time at TechPhlox and review latest tech’s world products and news. You can follow him on Twitter @MarkSpenser

    RELATED ARTICLES

  • TrustedReviews provides expert reviews of the latest

    TrustedReviews provides expert reviews of the latest

    Amazon, which already charges some of the world’s lowest fees for Prime Video in India, is going a step further to win more users in the world’s second largest internet market. The e-commerce giant on Saturday launched miniTV, an ad-supported video streaming service that is available within the Amazon shopping app and is “completely free.” miniTV is currently available only in India, Amazon said.

    miniTV features web-series, comedy shows, and content around tech news, food, beauty, fashion “to begin with,” Amazon said. Some of the titles currently available have been produced by leading studios such as TVF and Pocket Aces — two of the largest web studios in India — and comedians such as Ashish Chanchlani, Amit Bhadana, Round2Hell, Harsh Beniwal, Shruti Arjun Anand, Elvish Yadav, Prajakta Koli, Swagger Sharma, Aakash Gupta and Nishant Tanwar.

    “Viewers will be informed on latest products and trends by tech expert Trakin Tech, fashion and beauty experts such as Sejal Kumar, Malvika Sitlani, Jovita George, Prerna Chhabra and ShivShakti. Food lovers can enjoy content from Kabita’s Kitchen, Cook with Nisha, and Gobble. In the coming months, miniTV will add many more new and exclusive videos,” the company added, without sharing its future roadmap plans. (Amazon began integrating reviews and other web clippings — from media houses — on its shopping service in India for more than two years ago.)

    miniTV is currently available on Amazon’s Android app, and will arrive on the iOS counterpart and mobile web over the coming months, Amazon said.

    Amazon’s move follows a similar step by Walmart’s Flipkart, the company’s marquee rival in India, which rolled out video streaming service within its app in 2019. In recent years, scores of firms in India including Zomato have explored adding a video streaming offering to their own apps.

    Amazon has also aggressively pushed to expand its Prime Video offerings in India in recent quarters. The company — which partnered with Indian telecom network Airtel earlier this year to launch a new monthly mobile-only, single-user, standard definition (SD) tier (for $1.22) — has secured rights to stream some cricket matches in the country. Amazon also offers Prime Video as part of its Amazon Prime subscription in India.

    21
    • Share On:
    Writer

    Mark Spenser |

    Mark Spenser is a local NY resident and an avid geek. When he’s not rediscovering his island state, he enjoys spending time at TechPhlox and review latest tech’s world products and news. You can follow him on Twitter @MarkSpenser

    RELATED ARTICLES

  • Launched over 20 years ago as a news and rumor

    Launched over 20 years ago as a news and rumor

    Amazon, which already charges some of the world’s lowest fees for Prime Video in India, is going a step further to win more users in the world’s second largest internet market. The e-commerce giant on Saturday launched miniTV, an ad-supported video streaming service that is available within the Amazon shopping app and is “completely free.” miniTV is currently available only in India, Amazon said.

    miniTV features web-series, comedy shows, and content around tech news, food, beauty, fashion “to begin with,” Amazon said. Some of the titles currently available have been produced by leading studios such as TVF and Pocket Aces — two of the largest web studios in India — and comedians such as Ashish Chanchlani, Amit Bhadana, Round2Hell, Harsh Beniwal, Shruti Arjun Anand, Elvish Yadav, Prajakta Koli, Swagger Sharma, Aakash Gupta and Nishant Tanwar.

    “Viewers will be informed on latest products and trends by tech expert Trakin Tech, fashion and beauty experts such as Sejal Kumar, Malvika Sitlani, Jovita George, Prerna Chhabra and ShivShakti. Food lovers can enjoy content from Kabita’s Kitchen, Cook with Nisha, and Gobble. In the coming months, miniTV will add many more new and exclusive videos,” the company added, without sharing its future roadmap plans. (Amazon began integrating reviews and other web clippings — from media houses — on its shopping service in India for more than two years ago.)

    miniTV is currently available on Amazon’s Android app, and will arrive on the iOS counterpart and mobile web over the coming months, Amazon said.

    Amazon’s move follows a similar step by Walmart’s Flipkart, the company’s marquee rival in India, which rolled out video streaming service within its app in 2019. In recent years, scores of firms in India including Zomato have explored adding a video streaming offering to their own apps.

    Amazon has also aggressively pushed to expand its Prime Video offerings in India in recent quarters. The company — which partnered with Indian telecom network Airtel earlier this year to launch a new monthly mobile-only, single-user, standard definition (SD) tier (for $1.22) — has secured rights to stream some cricket matches in the country. Amazon also offers Prime Video as part of its Amazon Prime subscription in India.

    21
    • Share On:
    Writer

    Mark Spenser |

    Mark Spenser is a local NY resident and an avid geek. When he’s not rediscovering his island state, he enjoys spending time at TechPhlox and review latest tech’s world products and news. You can follow him on Twitter @MarkSpenser

    RELATED ARTICLES

  • TechRepublic helps IT decision-makers identify technologies

    TechRepublic helps IT decision-makers identify technologies

    Amazon, which already charges some of the world’s lowest fees for Prime Video in India, is going a step further to win more users in the world’s second largest internet market. The e-commerce giant on Saturday launched miniTV, an ad-supported video streaming service that is available within the Amazon shopping app and is “completely free.” miniTV is currently available only in India, Amazon said.

    miniTV features web-series, comedy shows, and content around tech news, food, beauty, fashion “to begin with,” Amazon said. Some of the titles currently available have been produced by leading studios such as TVF and Pocket Aces — two of the largest web studios in India — and comedians such as Ashish Chanchlani, Amit Bhadana, Round2Hell, Harsh Beniwal, Shruti Arjun Anand, Elvish Yadav, Prajakta Koli, Swagger Sharma, Aakash Gupta and Nishant Tanwar.

    “Viewers will be informed on latest products and trends by tech expert Trakin Tech, fashion and beauty experts such as Sejal Kumar, Malvika Sitlani, Jovita George, Prerna Chhabra and ShivShakti. Food lovers can enjoy content from Kabita’s Kitchen, Cook with Nisha, and Gobble. In the coming months, miniTV will add many more new and exclusive videos,” the company added, without sharing its future roadmap plans. (Amazon began integrating reviews and other web clippings — from media houses — on its shopping service in India for more than two years ago.)

    miniTV is currently available on Amazon’s Android app, and will arrive on the iOS counterpart and mobile web over the coming months, Amazon said.

    Amazon’s move follows a similar step by Walmart’s Flipkart, the company’s marquee rival in India, which rolled out video streaming service within its app in 2019. In recent years, scores of firms in India including Zomato have explored adding a video streaming offering to their own apps.

    Amazon has also aggressively pushed to expand its Prime Video offerings in India in recent quarters. The company — which partnered with Indian telecom network Airtel earlier this year to launch a new monthly mobile-only, single-user, standard definition (SD) tier (for $1.22) — has secured rights to stream some cricket matches in the country. Amazon also offers Prime Video as part of its Amazon Prime subscription in India.

    21
    • Share On:
    Writer

    Mark Spenser |

    Mark Spenser is a local NY resident and an avid geek. When he’s not rediscovering his island state, he enjoys spending time at TechPhlox and review latest tech’s world products and news. You can follow him on Twitter @MarkSpenser

    RELATED ARTICLES

  • people, products and ideas shaping our world.

    people, products and ideas shaping our world.

    Amazon, which already charges some of the world’s lowest fees for Prime Video in India, is going a step further to win more users in the world’s second largest internet market. The e-commerce giant on Saturday launched miniTV, an ad-supported video streaming service that is available within the Amazon shopping app and is “completely free.” miniTV is currently available only in India, Amazon said.

    miniTV features web-series, comedy shows, and content around tech news, food, beauty, fashion “to begin with,” Amazon said. Some of the titles currently available have been produced by leading studios such as TVF and Pocket Aces — two of the largest web studios in India — and comedians such as Ashish Chanchlani, Amit Bhadana, Round2Hell, Harsh Beniwal, Shruti Arjun Anand, Elvish Yadav, Prajakta Koli, Swagger Sharma, Aakash Gupta and Nishant Tanwar.

    “Viewers will be informed on latest products and trends by tech expert Trakin Tech, fashion and beauty experts such as Sejal Kumar, Malvika Sitlani, Jovita George, Prerna Chhabra and ShivShakti. Food lovers can enjoy content from Kabita’s Kitchen, Cook with Nisha, and Gobble. In the coming months, miniTV will add many more new and exclusive videos,” the company added, without sharing its future roadmap plans. (Amazon began integrating reviews and other web clippings — from media houses — on its shopping service in India for more than two years ago.)

    miniTV is currently available on Amazon’s Android app, and will arrive on the iOS counterpart and mobile web over the coming months, Amazon said.

    Amazon’s move follows a similar step by Walmart’s Flipkart, the company’s marquee rival in India, which rolled out video streaming service within its app in 2019. In recent years, scores of firms in India including Zomato have explored adding a video streaming offering to their own apps.

    Amazon has also aggressively pushed to expand its Prime Video offerings in India in recent quarters. The company — which partnered with Indian telecom network Airtel earlier this year to launch a new monthly mobile-only, single-user, standard definition (SD) tier (for $1.22) — has secured rights to stream some cricket matches in the country. Amazon also offers Prime Video as part of its Amazon Prime subscription in India.

    21
    Writer

    Mark Spenser |

    Mark Spenser is a local NY resident and an avid geek. When he’s not rediscovering his island state, he enjoys spending time at TechPhlox and review latest tech’s world products and news. You can follow him on Twitter @MarkSpenser

    RELATED ARTICLES

  • The Verge is an ambitious multimedia effort founded

    The Verge is an ambitious multimedia effort founded

    Amazon, which already charges some of the world’s lowest fees for Prime Video in India, is going a step further to win more users in the world’s second largest internet market. The e-commerce giant on Saturday launched miniTV, an ad-supported video streaming service that is available within the Amazon shopping app and is “completely free.” miniTV is currently available only in India, Amazon said.

    miniTV features web-series, comedy shows, and content around tech news, food, beauty, fashion “to begin with,” Amazon said. Some of the titles currently available have been produced by leading studios such as TVF and Pocket Aces — two of the largest web studios in India — and comedians such as Ashish Chanchlani, Amit Bhadana, Round2Hell, Harsh Beniwal, Shruti Arjun Anand, Elvish Yadav, Prajakta Koli, Swagger Sharma, Aakash Gupta and Nishant Tanwar.

    “Viewers will be informed on latest products and trends by tech expert Trakin Tech, fashion and beauty experts such as Sejal Kumar, Malvika Sitlani, Jovita George, Prerna Chhabra and ShivShakti. Food lovers can enjoy content from Kabita’s Kitchen, Cook with Nisha, and Gobble. In the coming months, miniTV will add many more new and exclusive videos,” the company added, without sharing its future roadmap plans. (Amazon began integrating reviews and other web clippings — from media houses — on its shopping service in India for more than two years ago.)

    miniTV is currently available on Amazon’s Android app, and will arrive on the iOS counterpart and mobile web over the coming months, Amazon said.

    Amazon’s move follows a similar step by Walmart’s Flipkart, the company’s marquee rival in India, which rolled out video streaming service within its app in 2019. In recent years, scores of firms in India including Zomato have explored adding a video streaming offering to their own apps.

    Amazon has also aggressively pushed to expand its Prime Video offerings in India in recent quarters. The company — which partnered with Indian telecom network Airtel earlier this year to launch a new monthly mobile-only, single-user, standard definition (SD) tier (for $1.22) — has secured rights to stream some cricket matches in the country. Amazon also offers Prime Video as part of its Amazon Prime subscription in India.

    21
    • Share On:
    Writer

    Mark Spenser |

    Mark Spenser is a local NY resident and an avid geek. When he’s not rediscovering his island state, he enjoys spending time at TechPhlox and review latest tech’s world products and news. You can follow him on Twitter @MarkSpenser

    RELATED ARTICLES

  • An original home for technology news and reviews

    An original home for technology news and reviews

    Amazon, which already charges some of the world’s lowest fees for Prime Video in India, is going a step further to win more users in the world’s second largest internet market. The e-commerce giant on Saturday launched miniTV, an ad-supported video streaming service that is available within the Amazon shopping app and is “completely free.” miniTV is currently available only in India, Amazon said.

    miniTV features web-series, comedy shows, and content around tech news, food, beauty, fashion “to begin with,” Amazon said. Some of the titles currently available have been produced by leading studios such as TVF and Pocket Aces — two of the largest web studios in India — and comedians such as Ashish Chanchlani, Amit Bhadana, Round2Hell, Harsh Beniwal, Shruti Arjun Anand, Elvish Yadav, Prajakta Koli, Swagger Sharma, Aakash Gupta and Nishant Tanwar.

    “Viewers will be informed on latest products and trends by tech expert Trakin Tech, fashion and beauty experts such as Sejal Kumar, Malvika Sitlani, Jovita George, Prerna Chhabra and ShivShakti. Food lovers can enjoy content from Kabita’s Kitchen, Cook with Nisha, and Gobble. In the coming months, miniTV will add many more new and exclusive videos,” the company added, without sharing its future roadmap plans. (Amazon began integrating reviews and other web clippings — from media houses — on its shopping service in India for more than two years ago.)

    miniTV is currently available on Amazon’s Android app, and will arrive on the iOS counterpart and mobile web over the coming months, Amazon said.

    Amazon’s move follows a similar step by Walmart’s Flipkart, the company’s marquee rival in India, which rolled out video streaming service within its app in 2019. In recent years, scores of firms in India including Zomato have explored adding a video streaming offering to their own apps.

    Amazon has also aggressively pushed to expand its Prime Video offerings in India in recent quarters. The company — which partnered with Indian telecom network Airtel earlier this year to launch a new monthly mobile-only, single-user, standard definition (SD) tier (for $1.22) — has secured rights to stream some cricket matches in the country. Amazon also offers Prime Video as part of its Amazon Prime subscription in India.

    21
    Writer

    Mark Spenser |

    Mark Spenser is a local NY resident and an avid geek. When he’s not rediscovering his island state, he enjoys spending time at TechPhlox and review latest tech’s world products and news. You can follow him on Twitter @MarkSpenser

    RELATED ARTICLES