Wireshark 3.6.0 Release Notes

Wireshark 3.6.0 Release Notes

What is Wireshark?

Wireshark is the world’s most popular network protocol analyzer. It is
used for troubleshooting, analysis, development and education.

What’s New

Many improvements have been made. See the “New and Updated Features”
section below for more details. You might want to pay particular
attention to the display filter syntax updates.

New and Updated Features

The following features are new (or have been significantly updated)
since version 3.6.0rc3:

 • The macOS Intel packages now ship with Qt 5.15.3 and require
   macOS 10.13 or later.

The following features are new (or have been significantly updated)
since version 3.6.0rc2:

 • Display filter set elements must now be comma-separated. See
   below for more details.

The following features are new (or have been significantly updated)
since version 3.6.0rc1:

 • The display filter expression “a != b” now has the same meaning
   as “!(a == b)”.

The following features are new (or have been significantly updated)
since version 3.5.0:

 • Nothing of note.

The following features are new (or have been significantly updated)
since version 3.4.0:

 • Several changes have been made to the display filter syntax:

    • The expression “a != b” now always has the same meaning as
   “!(a == b)”. In particular this means filter expressions with
   multi-value fields like “ip.addr != 1.1.1.1” will work as
   expected (the result is the same as typing “ip.src != 1.1.1.1 and
   ip.dst != 1.1.1.1”). This avoids the contradiction (a == b and a
   != b) being true.

    • It is possible to use the syntax “a ~= b” or “a any_ne b” to
   recover the previous (inconsistent with "==") logic for not
   equal.

    • Literal strings can now be specified using raw string syntax,
   identical to raw strings in the Python programming language. This
   can be used to avoid the complexity of using two levels of
   character escapes with regular expressions.

    • Set elements must now be separated using a comma. A filter
   such as http.request.method in {"GET" "HEAD"} must be written as
   …​ in {"GET", "HEAD"}. Whitespace is not significant. The
   previous use of whitespace as separator is deprecated and will be
   removed in a future version.

    • Support for the syntax "a not in b" with the same meaning as
   "not a in b" has been added.

 • Packaging updates:

    • A macOS Arm 64 (Apple Silicon) package is now available.

    • The macOS Intel packages now ship with Qt 5.15.3 and require
   macOS 10.13 or later.

    • The Windows installers now ship with Npcap 1.55.

    • A 64-bit Windows PortableApps package is now available.

 • TCP conversations now support a completeness criteria, which
   facilitates the identification of TCP streams having any of
   opening or closing handshakes, a payload, in any combination. It
   can be accessed with the new tcp.completeness filter.

 • Protobuf fields that are not serialized on the wire or otherwise
   missing in capture files can now be displayed with default values
   by setting the new “add_default_value” preference. The default
   values might be explicitly declared in “proto2” files, or false
   for bools, first value for enums, zero for numeric types.

 • Wireshark now supports reading Event Tracing for Windows (ETW). A
   new extcap named ETW reader is created that now can open an etl
   file, convert all events in the file to DLT_ETW packets and write
   to a specified FIFO destination. Also, a new packet_etw dissector
   is created to dissect DLT_ETW packets so Wireshark can display
   the DLT_ETW packet header, its message and packet_etw dissector
   calls packet_mbim sub_dissector if its provider matches the MBIM
   provider GUID.

 • “Follow DCCP stream” feature to filter for and extract the
   contents of DCCP streams.

 • Wireshark now supports dissecting RTP packets with OPUS payloads.

 • Importing captures from text files based on regular expressions
   is now possible. By specifying a regex capturing a single packet
   including capturing groups for relevant fields a textfile can be
   converted to a libpcap capture file. Supported data encodings are
   plain-hexadecimal, -octal, -binary and base64. Also the timestamp
   format now allows the second-fractions to be placed anywhere in
   the timestamp and it will be stored with nanosecond instead of
   microsecond precision.

 • The RTP Player has been significatnly redesigned and improved.
   See Playing VoIP Calls[1] and RTP Player Window[2] in the User’s
   Guide for more details.

    • The RTP Player can play many streams in row.

    • The UI is more responsive.

    • The RTP Player maintains playlist and other tools can add and
   remove streams to and from it.

    • Every stream can be muted or routed to the left or right
   channel for replay.

    • The option to save audio has been moved from the RTP Analysis
   dialog to the RTP Player. The RTP Player also saves what was
   played, and it can save in multichannel .au or .wav.

    • The RTP Player is now accessible from the Telephony › RTP ›
   RTP Player menu.

 • The VoIP dialogs (VoIP Calls, RTP Streams, RTP Analysis, RTP
   Player, SIP Flows) are non-modal and can stay opened on
   background.

    • The same tools are provided across all dialogs (Prepare
   Filter, Analyse, RTP Player …​)

 • The “Follow Stream” dialog is now able to follow SIP calls based
   on their Call-ID value.

 • The “Follow Stream” dialog’s YAML output format has been updated
   to add timestamps and peers information For more details see
   Following Protocol Streams[3] in the User’s Guide.

 • IP fragments between public IPv4 addresses are now reassembled
   even if they have different VLAN IDs. Reassembly of IP fragments
   where one endpoint is a private (RFC 1918 section 3) or
   link-local (RFC 3927) IPv4 address continues to take the VLAN ID
   into account, as those addresses can be reused. To revert to the
   previous behavior and not reassemble fragments with different
   VLAN IDs, turn on the “Enable stricter conversation tracking
   heuristics” top level protocol preference.

 • USB Link Layer reassembly has been added, which allows hardware
   captures to be analyzed at the same level as software captures.

 • TShark can now export TLS session keys with the
   --export-tls-session-keys option.

 • Wireshark participated in the Google Season of Docs 2020 and the
   User’s Guide has been extensively updated.

 • The “RTP Stream Analysis” dialog CSV export format was slightly
   changed. The first line of the export contains column titles as
   in other CSV exports.

 • Wireshark now supports the Turkish language.

 • The settings in the “Import from Hex Dump” dialog is now stored
   in a profile import_hexdump.json file.

 • Analyze › Reload Lua Plugins has been improved to properly
   support FileHandler.

 • The “RTP Stream Analysis” and “IAX2 Stream Analysis” dialogs now
   show correct calculation mean jitter calculations.

 • RTP streams are now created based on Skinny protocol messages in
   addition to other types of messages.

 • The “VoIP Calls Flow Sequence” window shows more information
   about various Skinny messages.

 • Initial support for building Wireshark on Windows using GCC and
   MinGW-w64 has been added. See README.msys2 in the sources for
   more information.

New File Format Decoding Support

Vector Informatik Binary Log File (BLF)

New Protocol Support

5G Lawful Interception (5GLI), Bluetooth Link Manager Protocol (BT
LMP), Bundle Protocol version 7 (BPv7), Bundle Protocol version 7
Security (BPSec), CBOR Object Signing and Encryption (COSE), E2
Application Protocol (E2AP), Event Tracing for Windows (ETW), EXtreme
extra Eth Header (EXEH), High-Performance Connectivity Tracer
(HiPerConTracer), ISO 10681, Kerberos SPAKE, Linux psample protocol,
Local Interconnect Network (LIN), Microsoft Task Scheduler Service,
O-RAN E2AP, O-RAN fronthaul UC-plane (O-RAN), Opus Interactive Audio
Codec (OPUS), PDU Transport Protocol, R09.x (R09), RDP Dynamic
Channel Protocol (DRDYNVC), RDP Graphic pipeline channel Protocol
(EGFX), RDP Multi-transport (RDPMT), Real-Time Publish-Subscribe
Virtual Transport (RTPS-VT), Real-Time Publish-Subscribe Wire
Protocol (processed) (RTPS-PROC), Shared Memory Communications (SMC),
Signal PDU, SparkplugB, State Synchronization Protocol (SSyncP),
Tagged Image File Format (TIFF), TP-Link Smart Home Protocol, UAVCAN
DSDL, UAVCAN/CAN, UDP Remote Desktop Protocol (RDPUDP), Van Jacobson
PPP compression (VJC), World of Warcraft World (WOWW), and X2 xIRI
payload (xIRI)

Updated Protocol Support

Too many protocols have been updated to list here.

New and Updated Capture File Support

Vector Informatik Binary Log File (BLF)

Getting Wireshark

Wireshark source code and installation packages are available from
https://www.wireshark.org/download.html.

Vendor-supplied Packages

Most Linux and Unix vendors supply their own Wireshark packages. You
can usually install or upgrade Wireshark using the package management
system specific to that platform. A list of third-party packages can
be found on the download page[4] on the Wireshark web site.

File Locations

Wireshark and TShark look in several different locations for
preference files, plugins, SNMP MIBS, and RADIUS dictionaries. These
locations vary from platform to platform. You can use Help › About
Wireshark › Folders or tshark -G folders to find the default locations
on your system.

Getting Help

The User’s Guide, manual pages and various other documentation can be
found at https://www.wireshark.org/docs/

Community support is available on Wireshark’s Q&A site[5] and on the
wireshark-users mailing list. Subscription information and archives
for all of Wireshark’s mailing lists can be found on the web site[6].

Bugs and feature requests can be reported on the issue tracker[7].

Frequently Asked Questions

A complete FAQ is available on the Wireshark web site[8].

Last updated 2021-11-22 18:33:14 UTC

References

  1. https://www.wireshark.org/docs/wsug_html_chunked/ChTelPlayingCalls
    .html
  2. https://www.wireshark.org/docs/wsug_html_chunked/_rtp.html#ChTelRt
    pPlayer
  3. https://www.wireshark.org/docs/wsug_html_chunked/ChAdvFollowStream
    Section.html
  4. https://www.wireshark.org/download.html
  5. https://ask.wireshark.org/
  6. https://www.wireshark.org/lists/
  7. https://gitlab.com/wireshark/wireshark/-/issues
  8. https://www.wireshark.org/faq.html

User Generated Content

User Generated Content

User-generated content (UGC) is content that users contribute to an app, and which is visible to or accessible by at least a subset of the app’s users.

Apps that contain or feature UGC must:

  • require that users accept the app’s terms of use and/or user policy before users can create or upload UGC;
  • define objectionable content and behaviors (in a way that complies with Play’s Developer Program Policies), and prohibit them in the app’s terms of use or user policies;
  • implement robust, effective and ongoing UGC moderation, as is reasonable and consistent with the type of UGC hosted by the app
    • In the case of live-streaming apps, objectionable UGC must be removed as close to real-time as reasonably possible;
    • In the case of augmented reality (AR) apps, UGC moderation (including the in-app reporting system) must account for both objectionable AR UGC (e.g. a sexually explicit AR image) and sensitive AR anchoring location (e.g. AR content anchored to a restricted area, such as a military base, or a private property where AR anchoring may cause issues for the property owner);
  • provide a user-friendly, in-app system for reporting objectionable UGC and take action against that UGC where appropriate;
  • remove or block abusive users who violate the app’s terms of use and/or user policy;
  • provide safeguards to prevent in-app monetization from encouraging objectionable user behavior.

Apps whose primary purpose is featuring objectionable UGC will be removed from Google Play. Similarly, apps that end up being used primarily for hosting objectionable UGC, or that develop a reputation among users of being a place where such content thrives, will also be removed from Google Play.

follow link for detail

Invoke-customs are only supported starting with Android O (–min-api 26)

It is also necessary to set the minSdkVersion and targetSdkVersion according to the min api reported in the error message. build.gradle : defaultConfig { applicationId “com.mypack.myapp” minSdkVersion 26 targetSdkVersion 29 versionCode 1 versionName “2.0”

After hours of struggling, I solved it by including the following within app/build.gradle:

android {
    compileOptions {
        sourceCompatibility JavaVersion.VERSION_1_8
        targetCompatibility JavaVersion.VERSION_1_8
    }
}

मेरी वेबसाइट कहाँ होस्ट करें | where to host my website

AWS

The AWS Cloud spans 81 Availability Zones within 25 geographic regions around the world, with announced plans for 24 more Availability Zones and 8 more AWS Regions in Australia, India, Indonesia, Israel, New Zealand, Spain, Switzerland, and United Arab Emirates (UAE).

Amazon Web Services (AWS) is the world’s most comprehensive and broadly adopted cloud platform, offering over 200 fully featured services from data centers globally. Millions of customers—including the fastest-growing startups, largest enterprises, and leading government agencies—are using AWS to lower costs, become more agile, and innovate faster.

AWS has significantly more services, and more features within those services, than any other cloud provider–from infrastructure technologies like compute, storage, and databases–to emerging technologies, such as machine learning and artificial intelligence, data lakes and analytics, and Internet of Things. This makes it faster, easier, and more cost effective to move your existing applications to the cloud and build nearly anything you can imagine.

AWS also has the deepest functionality within those services. For example, AWS offers the widest variety of databases that are purpose-built for different types of applications so you can choose the right tool for the job to get the best cost and performance.

AWS has the largest and most dynamic community, with millions of active customers and tens of thousands of partners globally. Customers across virtually every industry and of every size, including startups, enterprises, and public sector organizations, are running every imaginable use case on AWS. The AWS Partner Network (APN) includes thousands of systems integrators who specialize in AWS services and tens of thousands of independent software vendors (ISVs) who adapt their technology to work on AWS. 

AWS is architected to be the most flexible and secure cloud computing environment available today. Our core infrastructure is built to satisfy the security requirements for the military, global banks, and other high-sensitivity organizations. This is backed by a deep set of cloud security tools, with 230 security, compliance, and governance services and features. AWS supports 90 security standards and compliance certifications, and all 117 AWS services that store customer data offer the ability to encrypt that data.

मेरी वेबसाइट कहाँ होस्ट करें | where to host my website

Digitalocean

DigitalOcean is a values-driven organization. Here is what we believe in.

Our community is bigger than just us

We foster the global developer and entrepreneurial communities because they are the source of our ideas and innovation and essential to our sustained growth.

Simplicity in all we DO

We make decisions that eliminate complexity and obstacles to our moving fast so we can enable our customers to focus on testing their Ideas, building their businesses and realizing their dreams.

We speak up when we have something to say and listen when others DO

We create an environment where we are transparent and respectful so we are confident in bringing our best selves on behalf of our customers and each other, every day.

We are accountable to deliver on our commitments

Earning trust every day is our core value proposition to our customers and to each other. We must be trustworthy, because the opportunity to serve our customers is larger than any one of us.

Love is at our core

Underlying everything we do, love for our customers and our DO is essential to realizing our fullest potential.

Compute

Build and release faster with scalable compute products in the cloud. DigitalOcean provides flexible server configurations sized for any application, industry leading price to performance, and predictable pricing that is the same across regions and usage volumes.

Storage

Store and quickly access any amount of data reliably in the cloud. DigitalOcean offers several kinds of storage depending on your needs.

Networking

Secure and control the traffic to your applications with your own private network, traffic filtering, and load balancing.

Databases

Combine the power of our core VM platform with a fully managed MongoDB, MySQL, PostgreSQL, and Redis databases to give your application the performance it needs – without the operational demands that come with building and running your own database server.

Developer tools

Manage resources programmatically and integrate across the developer ecosystem.

Management tools

Monitor and manage, both your software and your team.

मेरी वेबसाइट कहाँ होस्ट करें | where to host my website

Godaddy

GoDaddy offers more than just a platform to build your website, we offer everything you need to create an effective, memorable online presence. Already have a site? We offer hosting plans that will keep it fast, secure and online. Our professional email helps you build a professional image, while our online marketing tools empower entrepreneurs to get online with an SEO-friendly website. GoDaddy is an all-in-one solution provider to get your idea online, backed with expert, personalized support from GoDaddy Guides.

Even small local businesses that only serve their hometown need a site. That’s because the web is the first place people go when looking for a product or service. A website helps every business:

  • Promote and sell their products and services
  • Connect with new customers (and keep existing customers)
  • Build credibility
  • Compete with bigger businesses
  • Control their brand and keep their marketing fresh and current

Best of all, a website is much easier and more affordable than you might think. GoDaddy offers a complete selection of online tools for building websites, along with hosting, email and marketing options to grow their business on the web.

Android SDK Integration – Razorpay Standard Checkout

Razorpay Android Standard SDK lets you easily integrate the Razorpay Payment Gateway with your Android application.

Important Notes:

  • Due to the changes in the Google Play Developer policy, we have removed auto-read SMS feature from Razorpay Android Standard SDK versions 1.5.1 and higher. However, if your Android app already has permission to read SMS, then Razorpay will auto-read it.
    If you are using older versions of Razorpay Android Standard SDK, you must upgrade to the latest version available on the Maven Repository.
  • According to PCI regulations, payment processing is not allowed on TLS v1. Hence, if the device does not have TLS v1.1 or TLS v1.2, the SDK will throw an error in the onPaymentError method. You can learn more about TLS versions here.
  • If using Android 12, you need to make this change to your Android Manifest.xml file.

List of Razorpay Android Standard SDK Versions (Last 5 versions)🔗

Version No.Release DateChanges
1.6.1305 Oct 2021Feature: Added NULL check at handleActivityResult to avoid NPE
Bug Fix: External wallet
Bug Fix: Removed error lag due to intent receiver
Bug Fix: Handled error response if response value is NULL
1.6.1212 Aug 2021Feature: Supports Google Pay Cards payments
1.6.1106 Aug 2021Bug Fix: Auto-read OTP for saved cards and ACS pages
Bug Fix: Error() response format
Bug Fix: CRED Intent response
1.6.1011 June 2021Bug Fix: App crashes when checkout screen is opened
1.6.911 June 2021Bug FixhandleActivityResult() giving a wrong error message in React Native when the wrong CVV is entered

check the system configuration in Linux

To know only the system name, you can use the uname command without any switch that will print system information or the uname -s command will print the kernel name of your system.

$ uname

To view your network hostname, use the ‘-n’ switch with the uname command as shown.

$ uname -n

To get information about kernel-version, use the ‘-v’ switch.

$ uname -v

To get the information about your kernel release, use the ‘-r’ switch.

$ uname -r

To print your machine hardware name, use the ‘-m’ switch:

$ uname -m

All this information can be printed at once by running the ‘uname -a’ command as shown below.

$ uname -a

lshw is a relatively small tool and there are few options that you can use with it while extracting information. The information provided by lshw was gathered from different /proc files.

$ sudo lshw

You can print a summary of your hardware information by using the -short option.

$ sudo lshw -short

If you wish to generate output as an html file, you can use the option -html.

$ sudo lshw -html > lshw.html

To view information about your CPU, use the lscpu command as it shows information about your CPU architecture such as a number of CPUs, cores, CPU family model, CPU caches, threads, etc from sysfs and /proc/cpuinfo.

$ lscpu

lsblk command is used to report information about block devices as follows.

$ lsblk 

If you want to view all block devices on your system then include the -a option.

$ lsblk -a

The lsusb command is used to report information about USB controllers and all the devices that are connected to them.

$ lsusb

You can use the -v option to generate detailed information about each USB device.

$ lsusb -v

Laravel seo hack trick

header.blade.php

  <!doctype html>
<html lang="en">
  <head>
    <!-- Required meta tags -->
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">


    @yield('seo')


    <!-- Bootstrap CSS -->
    <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css">
   <script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js"></script>
  <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
  <script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"></script>
  <link rel="stylesheet" type="text/css" href="https://cdn.datatables.net/v/dt/dt-1.10.18/datatables.min.css"/>
<script type="text/javascript" src="https://cdn.datatables.net/v/dt/dt-1.10.18/datatables.min.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
{{-- san San-Francisco Font --}}
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/mailtoharshit/San-Francisco-Font-/sanfrancisco.css">
  <link rel="stylesheet" href="{{ asset('/index.css') }}">
  

    <!-- <link rel="stylesheet" href="{{ asset('/homejs.js') }}"> -->
    <title>Aditya Kumar Singh</title>
  </head>
  <body>
  <nav class="navbar navbar-expand-lg navbar-red navbar-dark p-0">
    <!-- <div class="wrapper"> </div> -->
    <div class="container-fluid"> <a class="navbar-brand p-0" href="/">
     
    <button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
    <span class="navbar-toggler-icon"></span>
  </button>
  <div class="collapse navbar-collapse" id="navbarSupportedContent">
    <ul class="navbar-nav mr-auto ml-auto">

                <li class="nav-item"> <a class="nav-link mr-4 " aria-current="page" href="/">Home</a> </li>
                <!-- <li class="nav-item"> <a class="nav-link mr-4" href="#">Features</a> </li> -->
                <li class="nav-item"> <a class="nav-link mr-4" href="/about" call_type="About">About us</a> </li>
                <!-- <li class="nav-item"> <a class="nav-link mr-4" href="#">Fees</a> </li> -->
                <li class="nav-item"> <a class="nav-link mr-4" href="/contact" call_type="Contact">contact us</a> </li>
                <!-- <li class="nav-item"> <a class="nav-link mr-4" href="#"><i class="fa fa-search"></i></a> </li> -->
            </ul>
            <!-- <div class="d-flex flex-column sim"> <a class="btn btn-light action-button" role="button" href="#">Sign Up <i class="fa fa-arrow-right"></i></a> </div> -->
        </div>
    </div>
</nav>
   
  @yield('content') 
  @yield('footer')

index.blade.php

@extends('header')
@section('seo')
<title>Aditya kumar singh</title>
<meta name="description" content="aditya kumar singh">
<meta name=”robots” content="index, follow">
@endsection
  @section('content') 


<!-- HTML TAG -->

@endsection
@extends('footer')

contact.blade.php

@extends('header')
@section('seo')
<title>Aditya kumar singh</title>
<meta name="description" content="aditya kumar singh">
<meta name=”robots” content="index, follow">
@endsection
  @section('content') 
  <section id="contact" style="background-color:#f5f5f5">
<div class="container py-5">
	<div class="row justify-content-center align-items-center">
		<div class="col-12 col-sm-12 col-md-10 col-lg-10">
    
      <form action="/add-contact " method="post">
      @csrf
      <div class="text-center py-4"><h3 class="display-4 bold orange">Contact Us</h3>
                                </div>
                                @if ($message = Session::get('success'))
        <div class="alert alert-success">
            <p>{{ $message }}</p>
        </div>
    @endif
                                <div class="row" style="margin:0px 0px">
                                <div class="col-lg-6 col-md-6 col-sm-6" style="padding-bottom: 10px;">
                                <label for="name" class="mb-2"><b>Name</b></label>
                                <input class="form-control shadow p-4 mb-4 bg-white rounded @error('name') is-invalid @enderror" name="name" placeholder="Marth Wanjiku" type="text" />
                                @error('name')
<div class="alert alert-danger mt-1 mb-1">{{ $message }}</div>
@enderror
  </div>
                                <div class="col-lg-6 col-md-6 col-sm-6" style="padding-bottom: 10px;">
                                <label for="email" class="mb-2"><b>Email</b></label> 
                                 <input class="form-control shadow p-4 mb-4 bg-white rounded @error('email') is-invalid @enderror" name="email" placeholder="what's your email?" type="text"  />
                                 @error('email')
<div class="alert alert-danger mt-1 mb-1">{{ $message }}</div>
@enderror
   </div>
                                </div>
                                <div class="col-lg-12 col-md-12 col-sm-12" style="padding-bottom: 10px;">
                                <label for="msg" class="mb-2"><b>Massage</b></label>
                                <textarea rows="6" name="message" id="message2" class="form-control shadow p-4 mb-4 bg-white rounded @error('message') is-invalid @enderror" placeholder="How Can Help You?" ></textarea> 
                                @error('message')
<div class="alert alert-danger mt-1 mb-1">{{ $message }}</div>
@enderror
   </div>
                                <div class="btn-left">
                                   <input type="submit" name="sent" value="SUBMIT" class="btn btn-info btn-block rounded-0 py-2">
                                </div>
</div>
                    </form>
	  </div>
  </div>
</div>
</section>

  @endsection
@extends('footer')

kiran singh

Your Set-Top Box Will Now Support more DTH Operators

Telecom Regulatory Authority of India (TRAI) has decided that set-top boxes will be interoperable from now on so that in case customers wanted to switch their service providers, they wouldn’t need to change their set top boxes every time. 
As of now, the STBs that are offered by telecom operators are non-interoperable, which means that if you change your telecom provider, you will need a new set top box for the new one.
TRAI To Make Set Top Boxes Interoperable :-
The discussion of making the set top boxes interoperability has been on the table for a long time now and TRAI has finally made the decision to make it official. TRAI has stated that all the set top boxes in the entire country should support technical interoperability. 

Additionally, DTH and Multi-System Operators (MSOs) have been given a time period of six months to adapt to the new changes. As per TRAI, the new standard is DVB CI Plus 2.0 (with USB CAM) as per the ESTI TS 103 605 standards.
The Ministry of Information and Broadcasting (MIB) will probably include a suitable clause to ‘compulsorily facilitate’ the service of interoperability of set top boxes.
However, we should remember that the set top boxes of DTH and cable TV operators will not be interoperable. This means that a DTH subscriber cannot change to cable TV and vice versa. The reason behind this is that there are technical and commercial constraints to the universal STB, and hence, the interoperability will be applicable within the DTH and within the cable segment respectively.
USB Port-based Common Interface :-
TRAI has also advised that there be a mandatory provision of USB port-based Common Interface for all the digital television sets in India. The MIB, TRAI and the Ministry of Electronics and Information Technology (MeitY) will probably request BIS to change the specifications for digital television sets to include USB based Common Interface port as per DVI CI Plus 2.0 standard based on ETS TS 103 605.

All the TV manufacturers must provide all digital television sets with minimum one open interface port that is based on DVB CI Plus 2.0 standards that will allow a simple connection of USB CAM to allow reception of television signals. They will also be required to launch TV sets with built-in tuners to enable the reception of television content through both satellite and cable platforms.

source:techiyogiz